SetNextWindowCollapsed
Definition
-- @/=[C]:-1
function SetNextWindowCollapsed(...)
Callers
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
function M.SetNextWindowContentSize(ImVec2_size) imgui.SetNextWindowContentSize(ImVec2_size) end
function M.SetNextWindowCollapsed(bool_collapsed, ImGuiCond_cond)
if ImGuiCond_cond == nil then ImGuiCond_cond = 0 end
if ImGuiCond_cond == nil then ImGuiCond_cond = 0 end
imgui.SetNextWindowCollapsed(bool_collapsed, ImGuiCond_cond)
end
@/lua/ge/extensions/editor/api/gui.lua
if editor and editor.getPreference("ui.general.forceExpandWindowOnFirstShow") then
imgui.SetNextWindowCollapsed(false, imgui.Cond_Once)
end