electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit bda9adc01f892321c97d6daba7cd4f94016934a7
parent 1161e2ea0f0fcc06e6fe40423cf66eeb030c9d8e
Author: Neil Booth <kyuupichan@gmail.com>
Date:   Wed, 13 Jan 2016 22:50:25 +0900

Close install wizard when cancelled from menu

Diffstat:
Mgui/qt/installwizard.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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):