From a9b72c8363f18c8cf63561841734f4cd74d9ce24 Mon Sep 17 00:00:00 2001 From: Jon Layton Date: Thu, 18 Jan 2018 22:35:42 -0500 Subject: [PATCH] Improve titlebar title --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 66068a66..e4e2b84d 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -363,7 +363,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): self.setGeometry(100, 100, 840, 400) def watching_only_changed(self): - name = "Electrum Testnet" if NetworkConstants.TESTNET else "Electrum" + name = "[TESTNET] Zclassic Electrum" if NetworkConstants.TESTNET else "Zclassic Electrum" title = '%s %s - %s' % (name, self.wallet.electrum_version, self.wallet.basename()) extra = [self.wallet.storage.get('wallet_type', '?')]