From 47c929c9728454f1b0013e4de3b3a27a1f9c69dd 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. --- scene/gui/graph_node.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scene/gui/graph_node.cpp b/scene/gui/graph_node.cpp index b6a96238dc8..01b54ddaa8f 100644 --- a/scene/gui/graph_node.cpp +++ b/scene/gui/graph_node.cpp @@ -503,9 +503,7 @@ void GraphNode::_connpos_update() { } } - if (vofs > 0) { - vofs += sep; - } + vofs += sep; vofs += size.y; idx++; }