From 309ff44579c652388a0ac2e2c5da77da3a0cb1ba Mon Sep 17 00:00:00 2001 From: ocornut Date: Thu, 14 Aug 2014 14:32:01 +0100 Subject: [PATCH] Undo IsHovered > IsItemHovered, shorter name wins --- imgui.cpp | 4 ++-- imgui.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/imgui.cpp b/imgui.cpp index 6943ad37..6800dcbf 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1671,7 +1671,7 @@ ImVec2 GetMousePos() return GImGui.IO.MousePos; } -bool IsItemHovered() +bool IsHovered() { ImGuiWindow* window = GetCurrentWindow(); return window->DC.LastItemHovered; @@ -5427,7 +5427,7 @@ void ShowTestWindow(bool* open) ImGui::RadioButton("radio c", &e, 2); ImGui::Text("Hover me"); - if (ImGui::IsItemHovered()) + if (ImGui::IsHovered()) ImGui::SetTooltip("I am a tooltip"); static int item = 1; diff --git a/imgui.h b/imgui.h index b3549d9c..bd92ed5b 100644 --- a/imgui.h +++ b/imgui.h @@ -231,7 +231,7 @@ namespace ImGui // Utilities void SetTooltip(const char* fmt, ...); // set tooltip under mouse-cursor, typically use with ImGui::IsHovered(). (currently no contention handling, last call win) void SetNewWindowDefaultPos(ImVec2 pos); // set position of window that do - bool IsItemHovered(); // was the last item active area hovered by mouse? + bool IsHovered(); // was the last item active area hovered by mouse? ImVec2 GetItemBoxMin(); // get bounding box of last item ImVec2 GetItemBoxMax(); // get bounding box of last item bool IsClipped(ImVec2 item_size); // to perform coarse clipping on user's side (as an optimisation)