diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-02-08 10:15:25 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-02-08 10:15:25 +0300 |
| commit | 16020ae2a896633bc197cb3aca624c72329dd994 (patch) | |
| tree | 386c0ffd0618b8a65b73cd5a10b3c1f9fcc438c9 | |
| parent | 8bc411c598801642d6f39bc9a797c7c547c3c707 (diff) | |
| download | monzero-gui-16020ae2a896633bc197cb3aca624c72329dd994.tar.gz monzero-gui-16020ae2a896633bc197cb3aca624c72329dd994.tar.xz monzero-gui-16020ae2a896633bc197cb3aca624c72329dd994.zip | |
Wizard: "next button" visibility in backward direction fixed
| -rw-r--r-- | wizard/WizardMain.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml index 6b25be1d..eeefbf17 100644 --- a/wizard/WizardMain.qml +++ b/wizard/WizardMain.qml @@ -65,6 +65,8 @@ Rectangle { } function handlePageChanged() { + var nextButtonVisible = pages[currentPage] !== optionsPage; + nextButton.visible = nextButtonVisible; switch (pages[currentPage]) { case passwordPage: // disable "next" button until passwords match @@ -85,8 +87,7 @@ Rectangle { // nextButton.enabled = false; break default: - var nextButtonVisible = pages[currentPage] !== optionsPage; - //nextButton.visible = nextButton.enabled = nextButtonVisible; + } } |
