From 83538e4385a6a54553f0b609dcdc802e2e4968b5 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 23 Apr 2026 08:33:16 +0200 Subject: [PATCH] Fix moving reroute node in Visject to not break it's connection --- Source/Editor/Surface/VisjectSurface.Input.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;