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