From 4794ccfaf2a9bb555843e52d1c52ff4eeb292acc Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 18 Feb 2015 18:41:25 +0100 Subject: [PATCH] hide/show main window when wizard is called --- gui/qt/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 1c790ece1..6f7a56db3 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -340,12 +340,14 @@ class ElectrumWindow(QMainWindow): QMessageBox.critical(None, "Error", _("File exists")) return + self.hide() if self.wallet: self.close_wallet() wizard = installwizard.InstallWizard(self.config, self.network, storage) wallet = wizard.run('new') if wallet: self.load_wallet(wallet) + self.show()