aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-01-22 12:16:13 -0500
committerRiccardo Spagni <ric@spagni.net>2017-01-22 12:16:13 -0500
commit2d907c02f05c9b20a0fa12e056bcced25e82648b (patch)
treed501bb5789bd303ea178e15d31ac8d31ca544c3b
parent160e5c480ac4feb4994f36cb1749d94feb7f08c9 (diff)
parentadaa8cb8062f4703fc150dc97a9011150a123acd (diff)
downloadmonzero-gui-2d907c02f05c9b20a0fa12e056bcced25e82648b.tar.gz
monzero-gui-2d907c02f05c9b20a0fa12e056bcced25e82648b.tar.xz
monzero-gui-2d907c02f05c9b20a0fa12e056bcced25e82648b.zip
Merge pull request #416
adaa8cb Wizard: fix recover bug (Jaquee)
-rw-r--r--wizard/WizardMain.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml
index 124a5784..85407558 100644
--- a/wizard/WizardMain.qml
+++ b/wizard/WizardMain.qml
@@ -104,6 +104,7 @@ Rectangle {
function openCreateWalletPage() {
print ("show create wallet page");
currentPath = "create_wallet"
+ pages = paths[currentPath]
createWalletPage.createWallet(settings)
wizard.nextButton.visible = true
// goto next page
@@ -113,6 +114,7 @@ Rectangle {
function openRecoveryWalletPage() {
print ("show recovery wallet page");
currentPath = "recovery_wallet"
+ pages = paths[currentPath]
wizard.nextButton.visible = true
// goto next page
switchPage(true);