diff --git a/app/qml/main.qml b/app/qml/main.qml index f1d9f26..68ffe0a 100644 --- a/app/qml/main.qml +++ b/app/qml/main.qml @@ -82,12 +82,12 @@ ApplicationWindow{ Action{ id: copyAction text: qsTr("Copy") - shortcut: "Ctrl+Shift+C" + shortcut: Qt.platform.os === "osx" ? "Ctrl+C" : "Ctrl+Shift+C" } Action{ id: pasteAction text: qsTr("Paste") - shortcut: "Ctrl+Shift+V" + shortcut: Qt.platform.os === "osx" ? "Ctrl+V" : "Ctrl+Shift+V" } Action{ id: zoomIn