mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-22 19:49:34 +00:00
Wizard: bugfix for "next" button on password page
This commit is contained in:
parent
cb45a37c95
commit
ef66f9bf16
1 changed files with 3 additions and 5 deletions
|
@ -62,11 +62,9 @@ Rectangle {
|
|||
|
||||
// disallow "next" button until passwords match
|
||||
if (pages[currentPage] === passwordPage) {
|
||||
nextButton.visible = passwordPage.passwordValid
|
||||
}
|
||||
|
||||
// display settings summary
|
||||
if (pages[currentPage] === finishPage) {
|
||||
nextButton.visible = passwordPage.passwordValid;
|
||||
} else if (pages[currentPage] === finishPage) {
|
||||
// display settings summary
|
||||
finishPage.updateSettingsSummary();
|
||||
nextButton.visible = false
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue