Unstable #193

Merged
Swordfish90 merged 5 commits from unstable into master 2014-12-23 02:37:22 +01:00
Showing only changes of commit 0935dda00b - Show all commits

View File

@ -82,12 +82,12 @@ ApplicationWindow{
Action{ Action{
id: copyAction id: copyAction
text: qsTr("Copy") text: qsTr("Copy")
shortcut: "Ctrl+Shift+C" shortcut: Qt.platform.os === "osx" ? "Ctrl+C" : "Ctrl+Shift+C"
} }
Action{ Action{
id: pasteAction id: pasteAction
text: qsTr("Paste") text: qsTr("Paste")
shortcut: "Ctrl+Shift+V" shortcut: Qt.platform.os === "osx" ? "Ctrl+V" : "Ctrl+Shift+V"
} }
Action{ Action{
id: zoomIn id: zoomIn