mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Prevent dbl-click opening node edit dialog with text selected
Fixes #3958
This commit is contained in:
		| @@ -3369,6 +3369,9 @@ RED.view = (function() { | ||||
|         } | ||||
|         if (dblClickPrimed && mousedown_node == d && clickElapsed > 0 && clickElapsed < dblClickInterval) { | ||||
|             mouse_mode = RED.state.DEFAULT; | ||||
|             // Avoid dbl click causing text selection. | ||||
|             d3.event.preventDefault() | ||||
|             document.getSelection().removeAllRanges() | ||||
|             if (d.type != "subflow") { | ||||
|                 if (/^subflow:/.test(d.type) && (d3.event.ctrlKey || d3.event.metaKey)) { | ||||
|                     RED.workspaces.show(d.type.substring(8)); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user