1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 19:48:34 +02:00

WIP Menus: fixed hovering handling of menus from menu bars (#126)

This commit is contained in:
ocornut 2015-05-17 17:21:49 +01:00
parent f2b738648f
commit 88d7b3de23

View File

@ -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);