mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	dont handle both cmd+ctrl
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							5d698d66d0
						
					
				
				
					commit
					694fdebc71
				
			| @@ -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