From a4fec7b18148be0ec3bf6bda850223b58c2fe836 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Mon, 29 May 2017 15:46:28 +1000 Subject: [PATCH] Revert "Make the tor connection progressBar similarly style as the others" This reverts commit 538476ca0cba05d6014d2e86750770bb2eb61978. --- onionshare_gui/tor_connection_dialog.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/onionshare_gui/tor_connection_dialog.py b/onionshare_gui/tor_connection_dialog.py index 120036fd..93c03bef 100644 --- a/onionshare_gui/tor_connection_dialog.py +++ b/onionshare_gui/tor_connection_dialog.py @@ -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))