Browse Source

Merge pull request #23564 from endragor/fix-remove-child-ordering

Notify node's moved children after sibling removed
Juan Linietsky 6 years ago
parent
commit
c5656b7468
1 changed files with 1 additions and 0 deletions
  1. 1 0
      scene/main/node.cpp

+ 1 - 0
scene/main/node.cpp

@@ -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;