mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
Wizard: "next button" visibility in backward direction fixed
This commit is contained in:
parent
8bc411c598
commit
16020ae2a8
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue