mirror of
				https://github.com/Swordfish90/cool-retro-term.git
				synced 2025-10-31 15:12:28 +00:00 
			
		
		
		
	Fix: Make osx copy and paste shortcuts consistent with the system.
This commit is contained in:
		| @@ -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 | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user