mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-03-23 15:48:45 +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
|
// disallow "next" button until passwords match
|
||||||
if (pages[currentPage] === passwordPage) {
|
if (pages[currentPage] === passwordPage) {
|
||||||
nextButton.visible = passwordPage.passwordValid
|
nextButton.visible = passwordPage.passwordValid;
|
||||||
}
|
} else if (pages[currentPage] === finishPage) {
|
||||||
|
// display settings summary
|
||||||
// display settings summary
|
|
||||||
if (pages[currentPage] === finishPage) {
|
|
||||||
finishPage.updateSettingsSummary();
|
finishPage.updateSettingsSummary();
|
||||||
nextButton.visible = false
|
nextButton.visible = false
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue