From c0db0749f706a6f0ac3bc7b7cdd535d002555f20 Mon Sep 17 00:00:00 2001 From: lrgilbert Date: Sat, 21 Mar 2020 16:09:48 -0500 Subject: [PATCH] Fixed separation of ports on GraphNode Fixes #32474. (cherry picked from commit 47c929c9728454f1b0013e4de3b3a27a1f9c69dd) --- scene/gui/graph_node.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scene/gui/graph_node.cpp b/scene/gui/graph_node.cpp index 7b1bfdfdb5a..40e3de25ce5 100644 --- a/scene/gui/graph_node.cpp +++ b/scene/gui/graph_node.cpp @@ -504,8 +504,7 @@ void GraphNode::_connpos_update() { } } - if (vofs > 0) - vofs += sep; + vofs += sep; vofs += size.y; idx++; }