mirror of
https://github.com/ocornut/imgui.git
synced 2024-11-12 10:11:00 +01:00
WIP Menus: fixed hovering handling of menus from menu bars (#126)
This commit is contained in:
parent
f2b738648f
commit
88d7b3de23
@ -4707,7 +4707,7 @@ static inline bool IsWindowContentHoverable(ImGuiWindow* window)
|
||||
static bool IsHovered(const ImRect& bb, ImGuiID id)
|
||||
{
|
||||
ImGuiState& g = *GImGui;
|
||||
if (g.HoveredId == 0)
|
||||
if (g.HoveredId == 0 || g.HoveredId == id)
|
||||
{
|
||||
ImGuiWindow* window = GetCurrentWindow();
|
||||
if (g.HoveredRootWindow == window->RootWindow)
|
||||
@ -7504,7 +7504,7 @@ bool ImGui::BeginMenu(const char* label)
|
||||
RenderCollapseTriangle(pos + ImVec2(window->MenuColumns.Pos[2] + extra_w + g.FontSize * 0.20f, 0.0f), false);
|
||||
}
|
||||
|
||||
bool hovered = ImGui::IsItemHovered();
|
||||
bool hovered = IsHovered(window->DC.LastItemRect, id);
|
||||
if (!opened && hovered)
|
||||
{
|
||||
ImGui::OpenPopup(label);
|
||||
|
Loading…
Reference in New Issue
Block a user