Add numpad Enter handlers (Keys.onEnterPressed) (#516)

This commit is contained in:
Maximiliano Bertacchini
2021-02-27 23:01:22 +00:00
committed by GitHub
parent 87a7d2e45c
commit fff9f2b17d
8 changed files with 42 additions and 0 deletions

View File

@@ -358,6 +358,10 @@ Flickable {
Keys.onReturnPressed: {
customResolutionDialog.accept()
}
Keys.onEnterPressed: {
customResolutionDialog.accept()
}
}
Label {
@@ -382,6 +386,10 @@ Flickable {
Keys.onReturnPressed: {
customResolutionDialog.accept()
}
Keys.onEnterPressed: {
customResolutionDialog.accept()
}
}
}
}