| 7550 | } |
| 7551 | |
| 7552 | bool ImGui::IsWindowAppearing() |
| 7553 | { |
| 7554 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 7555 | return window->Appearing; |
| 7556 | } |
| 7557 | |
| 7558 | void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond) |
| 7559 | { |
nothing calls this directly
no test coverage detected