diff --git a/src/quick/AlternativesView.qml b/src/quick/AlternativesView.qml --- a/src/quick/AlternativesView.qml +++ b/src/quick/AlternativesView.qml @@ -22,6 +22,7 @@ StackView { id: stack + focus: true property bool running: false property alias pluginType: altsModel.pluginType property alias inputData: altsModel.inputData @@ -37,6 +38,8 @@ text: i18n("Use") onClicked: createJob(index); } + Keys.onReturnPressed: createJob(index) + Keys.onEnterPressed: createJob(index) } } @@ -90,9 +93,13 @@ } initialItem: ScrollView { + focus: true ListView { + focus: true model: altsModel + delegate: stack.delegate + highlight: Rectangle {} } }