Notify node's moved children after sibling removed

Fixes #16213.
This commit is contained in:
Ruslan Mustakov 2018-11-07 16:31:25 +07:00
parent de0d306558
commit 3b02cd3e71
1 changed files with 1 additions and 0 deletions

View File

@ -1208,6 +1208,7 @@ void Node::remove_child(Node *p_child) {
for (int i = idx; i < data.children.size(); i++) {
data.children[i]->data.pos = i;
data.children[i]->notification(NOTIFICATION_MOVED_IN_PARENT);
}
p_child->data.parent = NULL;