electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit c56fe45ad7b93cdb63b6dbb27f72d97c9e789258
parent 1d885c11e076f1a10fac580766f7d06ccaa0b3bb
Author: ThomasV <thomasv@gitorious>
Date:   Thu,  5 Mar 2015 15:56:18 +0100

show wizard before running it

Diffstat:
Mgui/qt/__init__.py | 1+
Mgui/qt/main_window.py | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py @@ -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: diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -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: