tClose install wizard when cancelled from menu - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit bda9adc01f892321c97d6daba7cd4f94016934a7
DIR parent 1161e2ea0f0fcc06e6fe40423cf66eeb030c9d8e
HTML Author: Neil Booth <kyuupichan@gmail.com>
Date: Wed, 13 Jan 2016 22:50:25 +0900
Close install wizard when cancelled from menu
Diffstat:
M gui/qt/installwizard.py | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
t@@ -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):