From c56fe45ad7b93cdb63b6dbb27f72d97c9e789258 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 5 Mar 2015 15:56:18 +0100 Subject: [PATCH] show wizard before running it --- gui/qt/__init__.py | 1 + gui/qt/main_window.py | 1 + 2 files changed, 2 insertions(+) diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py index b3f35b60d..2bc92d8a7 100644 --- 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 index 74324f433..db32a4686 100644 --- 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: