1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-02-09 04:50:11 +00:00

BeginGroup() extra comment because this is overused and misleading (#608)

This commit is contained in:
ocornut 2016-04-24 22:52:07 +02:00
parent 919eb69931
commit 4b51e43d60
2 changed files with 3 additions and 3 deletions

View file

@ -8813,6 +8813,7 @@ bool ImGui::IsRectVisible(const ImVec2& size)
return window->ClipRect.Overlaps(ImRect(window->DC.CursorPos, window->DC.CursorPos + size));
}
// Lock horizontal starting position + EndGroup() wraps group bounding box into one "item" (so you can use IsItemHovered() on a group, SameLine() between groups, etc.)
void ImGui::BeginGroup()
{
ImGuiWindow* window = GetCurrentWindow();
@ -9056,7 +9057,6 @@ void ImGui::Columns(int columns_count, const char* id, bool border)
{
if (g.ActiveIdIsJustActivated)
g.ActiveClickDeltaToCenter.x = x - g.IO.MousePos.x;
x = GetDraggedColumnOffset(i);
SetColumnOffset(i, x);
}