Browse Source

show wizard before running it

283
ThomasV 10 years ago
parent
commit
c56fe45ad7
  1. 1
      gui/qt/__init__.py
  2. 1
      gui/qt/main_window.py

1
gui/qt/__init__.py

@ -173,6 +173,7 @@ class ElectrumGui:
if action is not None:
import installwizard
wizard = installwizard.InstallWizard(self.config, self.network, storage)
wizard.show()
try:
wallet = wizard.run(action)
except BaseException as e:

1
gui/qt/main_window.py

@ -281,6 +281,7 @@ class ElectrumWindow(QMainWindow):
if action is not None:
import installwizard
wizard = installwizard.InstallWizard(self.config, self.network, storage)
wizard.show()
try:
wallet = wizard.run(action)
except BaseException as e:

Loading…
Cancel
Save