mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-22 02:34:36 +00:00
settings: bind return key after password change
The enter / return key is not bound to the information popup that appears after a successful password change. The functionality exists on the previous menu. Make it possible to use the return key on this popup as well. Co-authored-by: selsta <selsta@users.noreply.github.com>
This commit is contained in:
parent
a959919b8a
commit
ddd95f73b4
1 changed files with 3 additions and 0 deletions
3
main.qml
3
main.qml
|
@ -1692,6 +1692,9 @@ ApplicationWindow {
|
|||
informationPopup.open();
|
||||
}
|
||||
onRejectedNewPassword: {}
|
||||
Keys.enabled: !passwordDialog.visible && informationPopup.visible
|
||||
Keys.onEnterPressed: informationPopup.close()
|
||||
Keys.onReturnPressed: informationPopup.close()
|
||||
}
|
||||
|
||||
DevicePassphraseDialog {
|
||||
|
|
Loading…
Reference in a new issue