| 7492 | } |
| 7493 | |
| 7494 | bool ImGui::IsWindowAppearing() |
| 7495 | { |
| 7496 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 7497 | return window->Appearing; |
| 7498 | } |
| 7499 | |
| 7500 | void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond) |
| 7501 | { |
nothing calls this directly
no test coverage detected