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

docking
ocornut 9 years ago
parent 54805fd22a
commit 06d594e86b

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

Loading…
Cancel
Save