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