1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2025-01-18 12:15:27 +00:00

Fix: Make osx copy and paste shortcuts consistent with the system.

This commit is contained in:
Filippo Scognamiglio 2014-12-23 02:34:58 +01:00
parent 1119f774f9
commit 0935dda00b

View File

@ -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