diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-05-04 17:04:12 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-05-04 17:04:12 +0200 |
| commit | a4a44d7c99094cd42c12767b1df3027bb920e23e (patch) | |
| tree | 5cdd596bb8551154b586b2541a547716768e20df | |
| parent | 4ca35af11ac8b41192bdb373216513e524ee4cb0 (diff) | |
| download | monzero-gui-a4a44d7c99094cd42c12767b1df3027bb920e23e.tar.gz monzero-gui-a4a44d7c99094cd42c12767b1df3027bb920e23e.tar.xz monzero-gui-a4a44d7c99094cd42c12767b1df3027bb920e23e.zip | |
clear populated fields when stepping back to page 1 in wizard
| -rw-r--r-- | wizard/WizardMain.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml index 8a7c4b0b..21169ac1 100644 --- a/wizard/WizardMain.qml +++ b/wizard/WizardMain.qml @@ -115,6 +115,7 @@ ColumnLayout { function openCreateWalletPage() { + wizardRestarted(); print ("show create wallet page"); currentPath = "create_wallet" pages = paths[currentPath] @@ -125,6 +126,7 @@ ColumnLayout { } function openRecoveryWalletPage() { + wizardRestarted(); print ("show recovery wallet page"); currentPath = "recovery_wallet" pages = paths[currentPath] |
