tshow wallet name in wizard - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 50c6a2fcbd366111c74c50f6b63b96bc9023f138 DIR parent 0b674eb35de78d81877276654cc877aab625df9e HTML Author: ThomasV <thomasv@gitorious> Date: Mon, 2 Feb 2015 18:38:12 +0100 show wallet name in wizard Diffstat: M gui/qt/installwizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py t@@ -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)