Close install wizard when cancelled from menu

This commit is contained in:
Neil Booth 2016-01-13 22:50:25 +09:00
parent 1161e2ea0f
commit bda9adc01f
1 changed files with 1 additions and 0 deletions

View File

@ -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):