diff --git a/Source/Editor/Surface/VisjectSurface.Input.cs b/Source/Editor/Surface/VisjectSurface.Input.cs index c2f474865..249cec0df 100644 --- a/Source/Editor/Surface/VisjectSurface.Input.cs +++ b/Source/Editor/Surface/VisjectSurface.Input.cs @@ -659,7 +659,7 @@ namespace FlaxEditor.Surface if (_movingNodes != null && _movingNodes.Count > 0) { // Allow dropping a single node onto an existing connection and connect it - if (_movingNodes.Count == 1) + if (_movingNodes.Count == 1 && controlUnderMouse is not Archetypes.Tools.RerouteNode) { var mousePos = _rootControl.PointFromParent(ref _mousePos); InputBox intersectedConnectionInputBox;