mirror of
https://github.com/Drezil/imgui.git
synced 2024-12-25 00:56:35 +00:00
Dummy() create an item so functions such as IsItemHovered() can be used.
This commit is contained in:
parent
54805fd22a
commit
06d594e86b
@ -8520,7 +8520,9 @@ void ImGui::Dummy(const ImVec2& size)
|
|||||||
ImGuiWindow* window = GetCurrentWindow();
|
ImGuiWindow* window = GetCurrentWindow();
|
||||||
if (window->SkipItems)
|
if (window->SkipItems)
|
||||||
return;
|
return;
|
||||||
ItemSize(size);
|
const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size);
|
||||||
|
ItemSize(bb);
|
||||||
|
ItemAdd(bb, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ImGui::IsRectVisible(const ImVec2& size)
|
bool ImGui::IsRectVisible(const ImVec2& size)
|
||||||
|
Loading…
Reference in New Issue
Block a user