Disconnect item_rect_changed when removing a child of GraphEdit

This commit is contained in:
Wilson E. Alvarez 2020-09-11 14:38:28 -04:00
parent 4566db2a16
commit d370ae9e1f
No known key found for this signature in database
GPG key ID: A32174A3D2ED3F9E

View file

@ -262,6 +262,7 @@ void GraphEdit::remove_child_notify(Node *p_child) {
if (gn) {
gn->disconnect("offset_changed", callable_mp(this, &GraphEdit::_graph_node_moved));
gn->disconnect("raise_request", callable_mp(this, &GraphEdit::_graph_node_raised));
gn->disconnect("item_rect_changed", callable_mp((CanvasItem *)connections_layer, &CanvasItem::update));
}
}