mirror of
https://github.com/hyprwm/hyprpolkitagent.git
synced 2024-12-25 08:09:50 +01:00
qml: Add support for Numpad Enter key in authentication (#15)
This commit is contained in:
parent
d94cbabd3d
commit
b2cdeba9a4
1 changed files with 3 additions and 0 deletions
|
@ -38,6 +38,9 @@ ApplicationWindow {
|
|||
Keys.onReturnPressed: (e) => {
|
||||
hpa.setResult("auth:" + passwordField.text);
|
||||
}
|
||||
Keys.onEnterPressed: (e) => {
|
||||
hpa.setResult("auth:" + passwordField.text);
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
anchors.fill: parent
|
||||
|
|
Loading…
Reference in a new issue