mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #4218 from node-red/4204-cant-go-fullscreen-on-a-mac
Dont handle shortcuts with both cmd+ctrl modifiers
This commit is contained in:
		| @@ -249,7 +249,10 @@ RED.keyboard = (function() { | ||||
|         // One exception is shortcuts that include both Cmd and Ctrl. We don't | ||||
|         // support them - but we need to make sure we don't block browser-specific | ||||
|         // shortcuts (such as Cmd-Ctrl-F for fullscreen). | ||||
|         if ((evt.ctrlKey || evt.metaKey) && (evt.ctrlKey !== evt.metaKey)) { | ||||
|         if (evt.ctrlKey && evt.metaKey) { | ||||
|             return null; // dont handle both cmd+ctrl - let browser handle this | ||||
|         } | ||||
|         if (evt.ctrlKey || evt.metaKey) { | ||||
|             slot = slot.ctrl; | ||||
|         } | ||||
|         if (slot && evt.shiftKey) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user