aboutsummaryrefslogtreecommitdiff
path: root/desktop/onionshare/main_window.py
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/onionshare/main_window.py')
-rw-r--r--desktop/onionshare/main_window.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/onionshare/main_window.py b/desktop/onionshare/main_window.py
index 546592a1..255cb405 100644
--- a/desktop/onionshare/main_window.py
+++ b/desktop/onionshare/main_window.py
@@ -2,7 +2,7 @@
"""
OnionShare | https://onionshare.org/
-Copyright (C) 2014-2021 Micah Lee, et al. <micah@micahflee.com>
+Copyright (C) 2014-2022 Micah Lee, et al. <micah@micahflee.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -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()