Only set initial MenuItem focus if not activating via mouse

Having an initially highlighted item when using mouse navigation
doesn't adhere to UX norms and also can lead to a janky feeling
when the focus flip-flops from the item under the user's cursor
to the first item as the Menu opens.
This commit is contained in:
Cameron Gutman
2026-01-26 23:46:57 -06:00
parent b4a5d21f97
commit 6d40c61850
3 changed files with 13 additions and 6 deletions

View File

@@ -288,6 +288,7 @@ CenteredGridView {
asynchronous: true
sourceComponent: NavigableMenu {
id: appContextMenu
initiator: appContextMenuLoader.parent
NavigableMenuItem {
text: model.running ? qsTr("Resume Game") : qsTr("Launch Game")
onTriggered: launchOrResumeSelectedApp(true)

View File

@@ -2,13 +2,18 @@ import QtQuick 2.0
import QtQuick.Controls 2.2
Menu {
property var initiator
onOpened: {
// Give focus to the first visible and enabled menu item
for (var i = 0; i < count; i++) {
var item = itemAt(i)
if (item.visible && item.enabled) {
item.forceActiveFocus(Qt.TabFocusReason)
break
// If the initiating object currently has keyboard focus,
// give focus to the first visible and enabled menu item
if (initiator.focus) {
for (var i = 0; i < count; i++) {
var item = itemAt(i)
if (item.visible && item.enabled) {
item.forceActiveFocus(Qt.TabFocusReason)
break
}
}
}
}

View File

@@ -165,6 +165,7 @@ CenteredGridView {
asynchronous: true
sourceComponent: NavigableMenu {
id: pcContextMenu
initiator: pcContextMenuLoader.parent
MenuItem {
text: qsTr("PC Status: %1").arg(model.online ? qsTr("Online") : qsTr("Offline"))
font.bold: true