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() + } }