diff --git a/Scripts/Editor/NodeEditorAction.cs b/Scripts/Editor/NodeEditorAction.cs index 9682d17..404b8af 100644 --- a/Scripts/Editor/NodeEditorAction.cs +++ b/Scripts/Editor/NodeEditorAction.cs @@ -279,6 +279,7 @@ namespace XNodeEditor { break; case EventType.ValidateCommand: if (e.commandName == "SoftDelete") RemoveSelectedNodes(); + else if (SystemInfo.operatingSystemFamily == OperatingSystemFamily.MacOSX && e.commandName == "Delete") RemoveSelectedNodes(); else if (e.commandName == "Duplicate") DublicateSelectedNodes(); Repaint(); break;