diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py index b3f35b60..2bc92d8a 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 74324f43..db32a468 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: