Undo IsHovered > IsItemHovered, shorter name wins

This commit is contained in:
ocornut
2014-08-14 14:32:01 +01:00
parent f30d23a502
commit 309ff44579
2 changed files with 3 additions and 3 deletions

View File

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