Merge pull request #96646 from RedMser/reparent-internal

Fix "reparent to new node" when node has internal children
This commit is contained in:
Rémi Verschelde 2024-09-06 22:39:02 +02:00
commit 90801dff0c
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -2932,7 +2932,7 @@ void SceneTreeDock::_create() {
int original_position = -1;
if (only_one_top_node) {
parent = top_node->get_parent();
original_position = top_node->get_index();
original_position = top_node->get_index(false);
} else {
parent = top_node->get_parent()->get_parent();
}