mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-23 12:27:01 +00:00
Popups: child popups (menus) hidden on their first frame the same way as regular popup
This commit is contained in:
parent
81937d34a8
commit
70f83a3a65
@ -1776,8 +1776,11 @@ static void AddWindowToRenderList(ImVector<ImDrawList*>& out_render_list, ImGuiW
|
|||||||
for (size_t i = 0; i < window->DC.ChildWindows.size(); i++)
|
for (size_t i = 0; i < window->DC.ChildWindows.size(); i++)
|
||||||
{
|
{
|
||||||
ImGuiWindow* child = window->DC.ChildWindows[i];
|
ImGuiWindow* child = window->DC.ChildWindows[i];
|
||||||
if (child->Active) // clipped children may have been marked not active
|
if (!child->Active) // clipped children may have been marked not active
|
||||||
AddWindowToRenderList(out_render_list, child);
|
continue;
|
||||||
|
if ((child->Flags & ImGuiWindowFlags_Popup) && child->HiddenFrames > 0)
|
||||||
|
continue;
|
||||||
|
AddWindowToRenderList(out_render_list, child);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user