fix drawer radio buttons selection

This commit is contained in:
Cyril Anisimov 2024-10-20 01:27:02 +02:00
parent 626b9e1e76
commit 2c9fa10b8b
3 changed files with 30 additions and 38 deletions

View file

@ -246,6 +246,10 @@ PageType {
}
Keys.onPressed: function(event) {
if(event.key === Qt.Key_Tab) {
FocusController.nextKeyTabItem()
}
PageController.keyPressEvent(event.key)
event.accepted = true
}