From 50c6a2fcbd366111c74c50f6b63b96bc9023f138 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 2 Feb 2015 18:38:12 +0100 Subject: [PATCH] show wallet name in wizard --- gui/qt/installwizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index b0a51cf2..2d829178 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -35,7 +35,7 @@ class InstallWizard(QDialog): self.storage = storage self.setMinimumSize(575, 400) self.setMaximumSize(575, 400) - self.setWindowTitle('Electrum') + self.setWindowTitle('Electrum' + ' - ' + os.path.basename(self.storage.path)) self.connect(self, QtCore.SIGNAL('accept'), self.accept) self.stack = QStackedLayout() self.setLayout(self.stack)