From 88d7b3de23bf522fcf62e5e72988f70a27b0b73d Mon Sep 17 00:00:00 2001 From: ocornut Date: Sun, 17 May 2015 17:21:49 +0100 Subject: [PATCH] WIP Menus: fixed hovering handling of menus from menu bars (#126) --- imgui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui.cpp b/imgui.cpp index 9831015cf..a2510c9df 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -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);