From 0935dda00be26e00491c659de26cc1aaa134d109 Mon Sep 17 00:00:00 2001 From: Filippo Scognamiglio Date: Tue, 23 Dec 2014 02:34:58 +0100 Subject: [PATCH] Fix: Make osx copy and paste shortcuts consistent with the system. --- app/qml/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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