| 8430 | } |
| 8431 | |
| 8432 | bool ImGui::IsWindowAppearing() |
| 8433 | { |
| 8434 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 8435 | return window->Appearing; |
| 8436 | } |
| 8437 | |
| 8438 | void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond) |
| 8439 | { |
nothing calls this directly
no test coverage detected