Allow toggling through combo box options using left/right on gamepads/keyboards

This commit is contained in:
Cameron Gutman
2026-06-07 15:14:29 -05:00
parent 7c93aaf659
commit 02004bac3f
+8
View File
@@ -50,4 +50,12 @@ ComboBox {
popup.onAboutToHide: {
SdlGamepadKeyNavigation.setUiNavMode(true)
}
Keys.onLeftPressed: {
decrementCurrentIndex()
}
Keys.onRightPressed: {
incrementCurrentIndex()
}
}