Browse Source

Merge pull request #75767 from spanzeri/missing-node-index-update-on-deletion

Update sibling indices after a node is removed.
Clay John 2 years ago
parent
commit
132000f58d
1 changed files with 4 additions and 0 deletions
  1. 4 0
      scene/main/node.cpp

+ 4 - 0
scene/main/node.cpp

@@ -1215,6 +1215,10 @@ void Node::remove_child(Node *p_child) {
 	child_count = data.children.size();
 	children = data.children.ptrw();
 
+	for (int i = idx; i < child_count; i++) {
+		children[i]->data.index = i;
+	}
+
 	notification(NOTIFICATION_CHILD_ORDER_CHANGED);
 	emit_signal(SNAME("child_order_changed"));