mirror of https://github.com/ocornut/imgui
Fixed bad merge from Master
This commit is contained in:
parent
1172ff62e1
commit
0ea66dc260
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue