Browse Source

proper return from install wizard

master
ThomasV 12 years ago
parent
commit
e702b3312b
  1. 2
      gui/qt/__init__.py

2
gui/qt/__init__.py

@ -159,7 +159,7 @@ class ElectrumGui:
wizard = installwizard.InstallWizard(self.config, self.network, storage) wizard = installwizard.InstallWizard(self.config, self.network, storage)
wallet = wizard.run(action) wallet = wizard.run(action)
if not wallet: if not wallet:
exit() return
else: else:
wallet.start_threads(self.network) wallet.start_threads(self.network)

Loading…
Cancel
Save