1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-15 00:44:20 +00:00

Fixes for tooltip over modals leading to incorrect modal dimming. (#4729)

Amend 23ef6c1. Should rework tooltip to be in a consistent position in g.Windows[]
This commit is contained in:
ocornut 2021-12-09 11:50:23 +01:00
parent bdd2a94315
commit e03383d088
2 changed files with 2 additions and 2 deletions

View file

@ -4482,7 +4482,7 @@ ImGuiWindow* ImGui::FindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* par
continue;
if (!IsWindowWithinBeginStackOf(window, parent_window))
break;
if (IsWindowActiveAndVisible(window))
if (IsWindowActiveAndVisible(window) && GetWindowDisplayLayer(window) <= GetWindowDisplayLayer(parent_window))
bottom_most_visible_window = window;
}
return bottom_most_visible_window;