features/sdl_renderer3_multiviewports
ocornut ago%!(EXTRA string=10 years)
parent ebe363c951
commit d369e6b333
  1. 4
      imgui.cpp

@ -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()

Loading…
Cancel
Save