commit 50c6a2fcbd366111c74c50f6b63b96bc9023f138
parent 0b674eb35de78d81877276654cc877aab625df9e
Author: ThomasV <thomasv@gitorious>
Date: Mon, 2 Feb 2015 18:38:12 +0100
show wallet name in wizard
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)