From a335e9738cac0157db681fc2c6cdaf1ffbaea628 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Tue, 21 Dec 2021 14:11:22 +1100 Subject: [PATCH] Connect to the emitted TorConnectionDialog success to trigger tab update (fixes persistent tab update) --- desktop/src/onionshare/main_window.py | 1 + desktop/src/onionshare/tor_connection.py | 1 + 2 files changed, 2 insertions(+) diff --git a/desktop/src/onionshare/main_window.py b/desktop/src/onionshare/main_window.py index 546592a1..6e5cd61d 100644 --- a/desktop/src/onionshare/main_window.py +++ b/desktop/src/onionshare/main_window.py @@ -163,6 +163,7 @@ class MainWindow(QtWidgets.QMainWindow): # Start the "Connecting to Tor" dialog, which calls onion.connect() tor_con = TorConnectionDialog(self.common) tor_con.canceled.connect(self.tor_connection_canceled) + tor_con.success.connect(self.tabs.tor_is_connected) tor_con.open_tor_settings.connect(self.tor_connection_open_tor_settings) if not self.common.gui.local_only: tor_con.start() diff --git a/desktop/src/onionshare/tor_connection.py b/desktop/src/onionshare/tor_connection.py index 2cc599c4..d17ea7cb 100644 --- a/desktop/src/onionshare/tor_connection.py +++ b/desktop/src/onionshare/tor_connection.py @@ -119,6 +119,7 @@ class TorConnectionDialog(QtWidgets.QProgressDialog): self.active = False # Close the dialog after connecting self.setValue(self.maximum()) + self.success.emit() def _canceled_connecting_to_tor(self): self.common.log("TorConnectionDialog", "_canceled_connecting_to_tor")