2
0
mirror of https://github.com/godotengine/godot.git synced 2025-04-13 01:00:35 +08:00

Merge pull request from aaronp64/container_queue_sort

Fix `Container::pending_sort` tracking
This commit is contained in:
Rémi Verschelde 2024-06-11 11:53:42 +02:00
commit a0bbd398ee
No known key found for this signature in database
GPG Key ID: C3336907360768E1

@ -80,6 +80,7 @@ void Container::remove_child_notify(Node *p_child) {
void Container::_sort_children() {
if (!is_inside_tree()) {
pending_sort = false;
return;
}