You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Avoid focusing a window that is created outside of active modal. This will prevent active modal from being closed.// Since window is not focused it would reappear at the same display position like the last time it was visible.// In case of completely new windows it would go to the top (over current modal), but input to such window would still be blocked by modal.// Position window behind a modal that is not a begin-parent of this window.
want_focus = false;
if (window == window->RootWindow)
{
ImGuiWindow* blocking_modal = FindBlockingModal(window);
---> IM_ASSERT(blocking_modal != NULL);
BringWindowToDisplayBehind(window, blocking_modal);
}
The text was updated successfully, but these errors were encountered:
This assert:
The text was updated successfully, but these errors were encountered: