diff --git a/Scripts/Editor/NodeEditorGUI.cs b/Scripts/Editor/NodeEditorGUI.cs index a1e8fd3..98670a9 100644 --- a/Scripts/Editor/NodeEditorGUI.cs +++ b/Scripts/Editor/NodeEditorGUI.cs @@ -277,6 +277,9 @@ namespace XNodeEditor { private void DrawNodes() { Event e = Event.current; + if (e.delta != Vector2.zero) { + return; + } if (e.type == EventType.Layout) { selectionCache = new List(Selection.objects); }