Fix TreeItem.remove_child not updating Tree immediately
This commit is contained in:
parent
01574a566f
commit
7bdbfbf822
1 changed files with 4 additions and 4 deletions
|
@ -430,16 +430,16 @@ void TreeItem::remove_child(TreeItem *p_item) {
|
||||||
*c = (*c)->next;
|
*c = (*c)->next;
|
||||||
|
|
||||||
aux->parent = nullptr;
|
aux->parent = nullptr;
|
||||||
|
|
||||||
|
if (tree) {
|
||||||
|
tree->update();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
c = &(*c)->next;
|
c = &(*c)->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tree) {
|
|
||||||
tree->update();
|
|
||||||
}
|
|
||||||
|
|
||||||
ERR_FAIL();
|
ERR_FAIL();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue