From 02004bac3f61d630b6a5e388603a3dc4eec2b30b Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 7 Jun 2026 15:14:29 -0500 Subject: [PATCH] Allow toggling through combo box options using left/right on gamepads/keyboards --- app/gui/AutoResizingComboBox.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/gui/AutoResizingComboBox.qml b/app/gui/AutoResizingComboBox.qml index 6b947818..1aaab5a8 100644 --- a/app/gui/AutoResizingComboBox.qml +++ b/app/gui/AutoResizingComboBox.qml @@ -50,4 +50,12 @@ ComboBox { popup.onAboutToHide: { SdlGamepadKeyNavigation.setUiNavMode(true) } + + Keys.onLeftPressed: { + decrementCurrentIndex() + } + + Keys.onRightPressed: { + incrementCurrentIndex() + } }