1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-14 19:17:48 +01:00

Merge pull request #148 from Roflraging/master

Added missing implementation for ImGui::GetWindowCollapsed().
This commit is contained in:
omar 2015-03-01 20:05:20 +00:00
commit 4cdcbbff8c

View File

@ -3487,6 +3487,12 @@ void ImGui::SetWindowCollapsed(bool collapsed, ImGuiSetCond cond)
SetWindowCollapsed(window, collapsed, cond);
}
bool ImGui::GetWindowCollapsed()
{
ImGuiWindow* window = GetCurrentWindow();
return window->Collapsed;
}
void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiSetCond cond)
{
ImGuiWindow* window = FindWindowByName(name);