1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-24 15:50:25 +01:00
This commit is contained in:
ocornut 2015-02-27 09:13:23 +00:00
parent ebe363c951
commit d369e6b333

View File

@ -3467,14 +3467,14 @@ static void SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiSetCond
void ImGui::SetWindowCollapsed(bool collapsed, ImGuiSetCondition cond) void ImGui::SetWindowCollapsed(bool collapsed, ImGuiSetCondition cond)
{ {
ImGuiWindow* window = GetCurrentWindow(); ImGuiWindow* window = GetCurrentWindow();
SetWindowCollapsed(window); SetWindowCollapsed(window, collapsed, cond);
} }
void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiSetCondition cond) void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiSetCondition cond)
{ {
ImGuiWindow* window = FindWindowByName(name); ImGuiWindow* window = FindWindowByName(name);
if (window) if (window)
SetWindowCollapsed(window); SetWindowCollapsed(window, collapsed, cond);
} }
void ImGui::SetWindowFocus() void ImGui::SetWindowFocus()