mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
lockscreen: Accept pin on numpad enter
This commit is contained in:
parent
0f10fef43d
commit
ff6141dce7
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ Rectangle {
|
|||
if (event.modifiers === Qt.NoModifier) {
|
||||
if (event.key === Qt.Key_Backspace) {
|
||||
keypadRoot.backspace();
|
||||
} else if (event.key === Qt.Key_Return) {
|
||||
} else if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
|
||||
keypadRoot.enter();
|
||||
} else if (event.text != "") {
|
||||
keypadRoot.keyPress(event.text);
|
||||
|
|
|
|||
Loading…
Reference in a new issue