MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / uncollapse_tree

Method uncollapse_tree

scene/gui/tree.cpp:861–867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

859}
860
861void TreeItem::uncollapse_tree() {
862 TreeItem *t = this;
863 while (t) {
864 t->set_collapsed(false);
865 t = t->parent;
866 }
867}
868
869void TreeItem::set_custom_minimum_height(int p_height) {
870 if (custom_min_height == p_height) {

Callers 2

update_scene_treeMethod · 0.80
_selectMethod · 0.80

Calls 1

set_collapsedMethod · 0.45

Tested by

no test coverage detected