mirror of
https://github.com/ocornut/imgui.git
synced 2025-10-26 12:27:30 +00:00
Undo IsHovered > IsItemHovered, shorter name wins
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user