MCPcopy Create free account
hub / github.com/Aegel5/SimpleSwitcher / SetWindowActiveForSkipRefresh

Function SetWindowActiveForSkipRefresh

imgui_tiny_app/imgui/imgui.cpp:7779–7788  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7777}
7778
7779static void SetWindowActiveForSkipRefresh(ImGuiWindow* window)
7780{
7781 window->Active = true;
7782 for (ImGuiWindow* child : window->DC.ChildWindows)
7783 if (!child->Hidden)
7784 {
7785 child->Active = child->SkipRefresh = true;
7786 SetWindowActiveForSkipRefresh(child);
7787 }
7788}
7789
7790// Push a new Dear ImGui window to add widgets to.
7791// - A default window called "Debug" is automatically stacked at the beginning of every frame so you can use widgets without explicitly calling a Begin/End pair.

Callers 1

BeginMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected