Internals: rename recently added TreeNodeIsOpen() -> TreeNodeGetOpen(). (#7553, #1131, #2958, #2079, #722)

Amend ac7d6fb
This commit is contained in:
ocornut
2024-07-17 20:01:55 +02:00
parent 7c6d4ff28d
commit 070c046cd1
2 changed files with 2 additions and 2 deletions

View File

@@ -6260,7 +6260,7 @@ bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char
return TreeNodeBehavior(id, id, flags, label, label_end);
}
bool ImGui::TreeNodeIsOpen(ImGuiID storage_id)
bool ImGui::TreeNodeGetOpen(ImGuiID storage_id)
{
ImGuiContext& g = *GImGui;
ImGuiStorage* storage = g.CurrentWindow->DC.StateStorage;