mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	| @@ -168,8 +168,8 @@ RED.contextMenu = (function () { | ||||
|  | ||||
|             menuItems.push( | ||||
|                 null, | ||||
|                 { onselect: 'core:undo', disabled: RED.history.list().length === 0 }, | ||||
|                 { onselect: 'core:redo', disabled: RED.history.listRedo().length === 0 }, | ||||
|                 { onselect: 'core:undo', label: RED._("keyboard.undoChange"), disabled: RED.history.list().length === 0 }, | ||||
|                 { onselect: 'core:redo', label: RED._("keyboard.redoChange"), disabled: RED.history.listRedo().length === 0 }, | ||||
|                 null, | ||||
|                 { onselect: 'core:cut-selection-to-internal-clipboard', label: RED._("keyboard.cutNode"), disabled: !canEdit || !hasSelection }, | ||||
|                 { onselect: 'core:copy-selection-to-internal-clipboard', label: RED._("keyboard.copyNode"), disabled: !hasSelection }, | ||||
| @@ -177,7 +177,7 @@ RED.contextMenu = (function () { | ||||
|                 { onselect: 'core:delete-selection', disabled: !canEdit || !canDelete }, | ||||
|                 { onselect: 'core:delete-selection-and-reconnect', label: RED._('keyboard.deleteReconnect'), disabled: !canEdit || !canDelete }, | ||||
|                 { onselect: 'core:show-export-dialog', label: RED._("menu.label.export") }, | ||||
|                 { onselect: 'core:select-all-nodes' }, | ||||
|                 { onselect: 'core:select-all-nodes', label: RED._("keyboard.selectAll") }, | ||||
|             ) | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user