From 66886405f612cdadb0b4095c0f08914c0f6e0fc8 Mon Sep 17 00:00:00 2001 From: ocornut Date: Sun, 20 Dec 2015 23:32:24 +0100 Subject: [PATCH] Minor comment (#439) --- imgui_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui_internal.h b/imgui_internal.h index ebb3db8c..0dd6f630 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -512,8 +512,8 @@ struct IMGUI_API ImGuiDrawContext int TreeDepth; ImGuiID LastItemID; ImRect LastItemRect; - bool LastItemHoveredAndUsable; - bool LastItemHoveredRect; + bool LastItemHoveredAndUsable; // Item rectangle is hovered, and its window is currently interactable with (not blocked by a popup preventing access to the window) + bool LastItemHoveredRect; // Item rectangle is hovered, but its window may or not be currently interactable with (might be blocked by a popup preventing access to the window) bool MenuBarAppending; float MenuBarOffsetX; ImVector ChildWindows;