From 0ea66dc260522b4b4c3cecc508242a7555cdc8fc Mon Sep 17 00:00:00 2001 From: omar Date: Fri, 20 Oct 2017 18:16:53 +0200 Subject: [PATCH] Fixed bad merge from Master --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index dd26f13a5..b7c7ac54f 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -2383,7 +2383,7 @@ bool ImGui::ItemHoverable(const ImRect& bb, ImGuiID id) return false; if (!IsMouseHoveringRect(bb.Min, bb.Max)) return false; - if (!g.NavDisableMouseHover || !IsWindowContentHoverable(window, ImGuiHoveredFlags_Default)) + if (g.NavDisableMouseHover || !IsWindowContentHoverable(window, ImGuiHoveredFlags_Default)) return false; SetHoveredID(id);