Revert "Make the tor connection progressBar similarly style as the others"

This reverts commit 6ad8b888325c7a3d37b903a74e424649258c469e.
This commit is contained in:
Miguel Jacq 2017-05-29 15:46:28 +10:00
parent 6ad8b88832
commit 506cb55bc1
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6

View File

@ -43,19 +43,6 @@ class TorConnectionDialog(QtWidgets.QProgressDialog):
self.setModal(True)
self.setFixedSize(400, 150)
cssStyleData ="""
QProgressBar {
border: 2px solid grey;
border-radius: 5px;
text-align: center;
}
QProgressBar::chunk {
background: qlineargradient(x1: 0.5, y1: 0, x2: 0.5, y2: 1, stop: 0 #b366ff, stop: 1 #d9b3ff);
width: 10px;
}"""
self.setStyleSheet(cssStyleData)
# Label
self.setLabelText(strings._('connecting_to_tor', True))