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

@@ -56,6 +56,10 @@ NavigableDialog {
accept()
}
Keys.onEnterPressed: {
accept()
}
Keys.onEscapePressed: {
reject()
}