mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Defined bool ImGui::GetWindowCollapsed().
This commit is contained in:
parent
f18febca11
commit
85c71170af
@ -3487,6 +3487,12 @@ void ImGui::SetWindowCollapsed(bool collapsed, ImGuiSetCond cond)
|
|||||||
SetWindowCollapsed(window, collapsed, cond);
|
SetWindowCollapsed(window, collapsed, cond);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ImGui::GetWindowCollapsed()
|
||||||
|
{
|
||||||
|
ImGuiWindow* window = GetCurrentWindow();
|
||||||
|
return window->Collapsed;
|
||||||
|
}
|
||||||
|
|
||||||
void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiSetCond cond)
|
void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiSetCond cond)
|
||||||
{
|
{
|
||||||
ImGuiWindow* window = FindWindowByName(name);
|
ImGuiWindow* window = FindWindowByName(name);
|
||||||
|
Loading…
Reference in New Issue
Block a user