mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 16:28:14 +00:00
Merge pull request #2781
a0b6c8a
PasswordDialog: don't skip equality check (selsta)
This commit is contained in:
commit
cb84652c8e
1 changed files with 3 additions and 0 deletions
|
@ -253,6 +253,9 @@ Item {
|
|||
Keys.enabled: root.visible
|
||||
Keys.onEnterPressed: Keys.onReturnPressed(event)
|
||||
Keys.onReturnPressed: {
|
||||
if (!passwordDialogMode && passwordInput1.text !== passwordInput2.text) {
|
||||
return;
|
||||
}
|
||||
root.close()
|
||||
if (passwordDialogMode) {
|
||||
root.accepted()
|
||||
|
|
Loading…
Reference in a new issue