mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-23 05:01:24 -05:00
Connect to the emitted TorConnectionDialog success to trigger tab update (fixes persistent tab update)
This commit is contained in:
parent
4ab5e0003c
commit
a335e9738c
@ -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()
|
||||
|
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user