From bda9adc01f892321c97d6daba7cd4f94016934a7 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Wed, 13 Jan 2016 22:50:25 +0900 Subject: [PATCH] Close install wizard when cancelled from menu --- gui/qt/installwizard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index a2a2f6ff7..f4d1e4773 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -158,6 +158,7 @@ class InstallWizard(WindowModalDialog, WizardBase): wallet = WizardBase.run(self, *args) except UserCancelled: self.print_error("wallet creation cancelled by user") + self.accept() # For when called from menu return wallet def remove_from_recently_open(self, filename):