| 6066 | } |
| 6067 | |
| 6068 | void ImGui::TreeNodeSetOpen(ImGuiID id, bool open) |
| 6069 | { |
| 6070 | ImGuiContext& g = *GImGui; |
| 6071 | ImGuiStorage* storage = g.CurrentWindow->DC.StateStorage; |
| 6072 | storage->SetInt(id, open ? 1 : 0); |
| 6073 | } |
| 6074 | |
| 6075 | bool ImGui::TreeNodeUpdateNextOpen(ImGuiID id, ImGuiTreeNodeFlags flags) |
| 6076 | { |