Connect to the emitted TorConnectionDialog success to trigger tab update (fixes persistent tab update)

This commit is contained in:
Miguel Jacq 2021-12-21 14:11:22 +11:00
parent 4ab5e0003c
commit a335e9738c
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6
2 changed files with 2 additions and 0 deletions

View File

@ -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()

View File

@ -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")