diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 3079981f9..31c2c4f9a 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -733,7 +733,10 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): else: icon = QIcon(":icons/status_connected_proxy.png") else: - text = _("Not connected") + if self.network.proxy: + text = "{} ({})".format(_("Not connected"), _("proxy enabled")) + else: + text = _("Not connected") icon = QIcon(":icons/status_disconnected.png") self.tray.setToolTip("%s (%s)" % (text, self.wallet.basename()))