diff --git a/client/ui/qml/Components/SelectLanguageDrawer.qml b/client/ui/qml/Components/SelectLanguageDrawer.qml index d3ae7146..c0af3acd 100644 --- a/client/ui/qml/Components/SelectLanguageDrawer.qml +++ b/client/ui/qml/Components/SelectLanguageDrawer.qml @@ -60,35 +60,13 @@ DrawerType2 { anchors.right: parent.right anchors.bottom: parent.bottom - clip: true - interactive: true - - property int selectedIndex: LanguageModel.currentLanguageIndex property bool isFocusable: true + property int selectedIndex: LanguageModel.currentLanguageIndex - Keys.onTabPressed: { - FocusController.nextKeyTabItem() - } + clip: true + reuseItems: true - Keys.onBacktabPressed: { - FocusController.previousKeyTabItem() - } - - Keys.onUpPressed: { - FocusController.nextKeyUpItem() - } - - Keys.onDownPressed: { - FocusController.nextKeyDownItem() - } - - Keys.onLeftPressed: { - FocusController.nextKeyLeftItem() - } - - Keys.onRightPressed: { - FocusController.nextKeyRightItem() - } + ScrollBar.vertical: ScrollBarType {} model: LanguageModel