show wizard before running it

This commit is contained in:
ThomasV 2015-03-05 15:56:18 +01:00
parent 1d885c11e0
commit c56fe45ad7
2 changed files with 2 additions and 0 deletions

View File

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

View File

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