From 9ef1f300f38a6413ed9fdebd1e1bce4a433f8da5 Mon Sep 17 00:00:00 2001 From: Maran Date: Thu, 11 Jun 2015 15:08:15 +0200 Subject: [PATCH] Fix Wizard on first run --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 72501b62..252b77e2 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -334,7 +334,7 @@ class ElectrumWindow(QMainWindow): QMessageBox.critical(None, "Error", _("File exists")) return self.hide() - wizard = installwizard.InstallWizard(self.config, self.network, storage) + wizard = installwizard.InstallWizard(self.config, self.network, storage, self.app) action, wallet_type = wizard.restore_or_create() if not action: self.show()