HelpMarker("You can pass a 'min_row_height' to TableNextRow().\n\nRows are padded with 'style.CellPadding.y' on top and bottom, so effectively the minimum row height will always be >= 'style.CellPadding.y * 2.0f'.\n\nWe cannot honor a _maximum_ row height as that would require a unique clipping rectangle per row.");
HelpMarker("Showcase using SameLine(0,0) to share Current Line Height between cells.\n\nPlease note that Tables Row Height is not the same thing as Current Line Height, as a table cell may contains multiple lines.");
window->DC.PrevLineSize=window->DC.CurrLineSize=ImVec2(0.0f,0.0f);// This allows users to call SameLine() to share LineSize between columns, and to call it from first column too.
window->DC.IsSameLine=window->DC.IsSetPos=false;
window->DC.CursorMaxPos.y=next_y1;
@ -2016,6 +2016,7 @@ void ImGui::TableBeginCell(ImGuiTable* table, int column_n)