Skip to content

Commit c24b480

Browse files
committed
fix(qml): preserve native preferences action
1 parent 27dd4e0 commit c24b480

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

res/qml/MainMenuBar.qml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,9 @@ MenuBar {
316316
onTriggered: Qt.openUrlExternally("https://manual.mixxx.org/2.7/chapters/controlling_mixxx.html#using-a-keyboard")
317317
}
318318
Action {
319-
text: qsTr("&Settings directory")
319+
// Qt Quick Controls does not expose native menu roles. Prevent
320+
// macOS from treating this action as the application Preferences action.
321+
text: qsTr("&Settings directory") + "\u200c"
320322

321323
onTriggered: Qt.openUrlExternally(Mixxx.Application.settingsDirectoryUrl)
322324
}

0 commit comments

Comments
 (0)