Merge pull request #41996 from Rubonnek/disconnect-item-rect-changed-3.2

[3.2] Disconnect item_rect_changed removing a child of GraphEdit
This commit is contained in:
Rémi Verschelde 2020-09-12 15:27:03 +02:00 committed by GitHub
commit cd62be1845
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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