| 6092 | } |
| 6093 | |
| 6094 | void ImGui::TreeNodeSetOpen(ImGuiID id, bool open) |
| 6095 | { |
| 6096 | ImGuiContext& g = *GImGui; |
| 6097 | ImGuiStorage* storage = g.CurrentWindow->DC.StateStorage; |
| 6098 | storage->SetInt(id, open ? 1 : 0); |
| 6099 | } |
| 6100 | |
| 6101 | bool ImGui::TreeNodeUpdateNextOpen(ImGuiID id, ImGuiTreeNodeFlags flags) |
| 6102 | { |