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);
}