Merge branch 'connect_to_tor_emitted_on_persistent_tabs' of https://github.com/mig5/onionshare into mig5-connect_to_tor_emitted_on_persistent_tabs

This commit is contained in:
Micah Lee 2022-01-16 14:23:52 -08:00
commit b4e022149d
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
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")