mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-04-15 15:20:49 +01:00
Fix: osx shortcuts.
This commit is contained in:
parent
a62645f0b7
commit
7dd61c89fc
@ -82,12 +82,12 @@ ApplicationWindow{
|
|||||||
Action{
|
Action{
|
||||||
id: copyAction
|
id: copyAction
|
||||||
text: qsTr("Copy")
|
text: qsTr("Copy")
|
||||||
shortcut: Qt.platform.os === "osx" ? "Ctrl+C" : "Ctrl+Shift+C"
|
shortcut: Qt.platform.os === "osx" ? StandardKey.Copy : "Ctrl+Shift+C"
|
||||||
}
|
}
|
||||||
Action{
|
Action{
|
||||||
id: pasteAction
|
id: pasteAction
|
||||||
text: qsTr("Paste")
|
text: qsTr("Paste")
|
||||||
shortcut: Qt.platform.os === "osx" ? "Ctrl+V" : "Ctrl+Shift+V"
|
shortcut: Qt.platform.os === "osx" ? StandardKey.Paste : "Ctrl+Shift+V"
|
||||||
}
|
}
|
||||||
Action{
|
Action{
|
||||||
id: zoomIn
|
id: zoomIn
|
||||||
|
Loading…
x
Reference in New Issue
Block a user