From 8ce2af290c8bb504d647fa37ea355f156e6a5367 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 30 Nov 2022 15:10:15 +0100 Subject: [PATCH] Conditionally add ctrl+, hotkey to open settings Only do this for mac, as it is not customary on other OSes CURA-9939 --- resources/qml/Actions.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index d48d8e610f..6cd75b51ac 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -187,7 +187,8 @@ Item //- https://doc.qt.io/qt-5/qmenubar.html#qmenubar-as-a-global-menu-bar text: (Qt.platform.os == "osx") ? "Configure Cura..." : catalog.i18nc("@action:inmenu", "Configure Cura...") icon.name: "configure" - shortcut: "Ctrl+," + // on MacOS it us customary to assign the ctrl+, hotkey to open a general settings menu + shortcut: (Qt.platform.os == "osx") ? "Ctrl+," : "" } Action