mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-02 09:27:25 -04: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:
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 {
|
||||
|
||||
Reference in New Issue
Block a user