From 645dc40cba722093b0b94ef4e5e3164796353ffb Mon Sep 17 00:00:00 2001 From: kobewi Date: Tue, 14 Sep 2021 16:09:33 +0200 Subject: Fix error when moving graph node --- scene/gui/graph_edit.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/scene/gui/graph_edit.cpp b/scene/gui/graph_edit.cpp index cabae9feb2..b9b02b1427 100644 --- a/scene/gui/graph_edit.cpp +++ b/scene/gui/graph_edit.cpp @@ -356,16 +356,6 @@ void GraphEdit::_graph_node_raised(Node *p_gn) { } else { gn->raise(); } - int first_not_comment = 0; - for (int i = 0; i < get_child_count(); i++) { - GraphNode *gn2 = Object::cast_to(get_child(i)); - if (gn2 && !gn2->is_comment()) { - first_not_comment = i; - break; - } - } - - move_child(connections_layer, first_not_comment); emit_signal(SNAME("node_selected"), p_gn); } -- cgit v1.2.3