1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 03:28:33 +02:00

Dummy() create an item so functions such as IsItemHovered() can be used.

This commit is contained in:
ocornut 2015-10-05 20:27:22 +02:00
parent 54805fd22a
commit 06d594e86b

View File

@ -8520,7 +8520,9 @@ void ImGui::Dummy(const ImVec2& size)
ImGuiWindow* window = GetCurrentWindow();
if (window->SkipItems)
return;
ItemSize(size);
const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size);
ItemSize(bb);
ItemAdd(bb, NULL);
}
bool ImGui::IsRectVisible(const ImVec2& size)