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()