mirror of
https://github.com/Drezil/imgui.git
synced 2024-12-20 06:46:36 +00:00
This commit is contained in:
parent
b50b22d787
commit
7f38773b73
@ -3831,7 +3831,7 @@ void ImGui::UpdateMouseMovingWindowEndFrame()
|
|||||||
// Find the top-most window between HoveredWindow and the top-most Modal Window.
|
// Find the top-most window between HoveredWindow and the top-most Modal Window.
|
||||||
// This is where we can trim the popup stack.
|
// This is where we can trim the popup stack.
|
||||||
ImGuiWindow* modal = GetTopMostPopupModal();
|
ImGuiWindow* modal = GetTopMostPopupModal();
|
||||||
bool hovered_window_above_modal = g.HoveredWindow && IsWindowAbove(g.HoveredWindow, modal);
|
bool hovered_window_above_modal = g.HoveredWindow && (modal == NULL || IsWindowAbove(g.HoveredWindow, modal));
|
||||||
ClosePopupsOverWindow(hovered_window_above_modal ? g.HoveredWindow : modal, true);
|
ClosePopupsOverWindow(hovered_window_above_modal ? g.HoveredWindow : modal, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user