tshow wizard before running it - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit c56fe45ad7b93cdb63b6dbb27f72d97c9e789258
DIR parent 1d885c11e076f1a10fac580766f7d06ccaa0b3bb
HTML Author: ThomasV <thomasv@gitorious>
Date: Thu, 5 Mar 2015 15:56:18 +0100
show wizard before running it
Diffstat:
M gui/qt/__init__.py | 1 +
M gui/qt/main_window.py | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
---
DIR diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py
t@@ -173,6 +173,7 @@ class ElectrumGui:
if action is not None:
import installwizard
wizard = installwizard.InstallWizard(self.config, self.network, storage)
+ wizard.show()
try:
wallet = wizard.run(action)
except BaseException as e:
DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
t@@ -281,6 +281,7 @@ class ElectrumWindow(QMainWindow):
if action is not None:
import installwizard
wizard = installwizard.InstallWizard(self.config, self.network, storage)
+ wizard.show()
try:
wallet = wizard.run(action)
except BaseException as e: