MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ApplyWindowSettings

Function ApplyWindowSettings

KBotExt/imgui/imgui.cpp:5514–5520  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5512}
5513
5514static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings)
5515{
5516 window->Pos = ImFloor(ImVec2(settings->Pos.x, settings->Pos.y));
5517 if (settings->Size.x > 0 && settings->Size.y > 0)
5518 window->Size = window->SizeFull = ImFloor(ImVec2(settings->Size.x, settings->Size.y));
5519 window->Collapsed = settings->Collapsed;
5520}
5521
5522static void UpdateWindowInFocusOrderList(ImGuiWindow* window, bool just_created, ImGuiWindowFlags new_flags)
5523{

Callers 2

InitOrLoadWindowSettingsFunction · 0.85

Calls 2

ImFloorFunction · 0.85
ImVec2Function · 0.85

Tested by

no test coverage detected