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;