From 25856cd11c352445ea10da9274c6af25f9e83da6 Mon Sep 17 00:00:00 2001 From: Wang Zichong Date: Mon, 13 Nov 2023 13:09:40 +0800 Subject: [PATCH] fix: Enter key to jump to category section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 字母列表下,支持回车键选中焦点项。 实际上测试人员期望大部分按钮在有焦点的时候都可以通过 Enter 键触发,而不是 Space 键。以后可能需要考虑其它方案做这件事。 Issue: https://github.com/linuxdeepin/developer-center/issues/6154 Log: --- qml/AlphabetCategory.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qml/AlphabetCategory.qml b/qml/AlphabetCategory.qml index 452d4a7d..ad36ae92 100644 --- a/qml/AlphabetCategory.qml +++ b/qml/AlphabetCategory.qml @@ -62,6 +62,9 @@ ColumnLayout { onClicked: { categoryClicked(modelData) } + Keys.onReturnPressed: { + onClicked() + } } }