mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-12 07:49:55 +02:00
Tables: Made it possible to change style.CellPadding.y between rows. Added demo.
This commit is contained in:
@ -2630,9 +2630,9 @@ struct IMGUI_API ImGuiTable
|
||||
float HostIndentX;
|
||||
float MinColumnWidth;
|
||||
float OuterPaddingX;
|
||||
float CellPaddingX; // Padding from each borders
|
||||
float CellPaddingY;
|
||||
float CellSpacingX1; // Spacing between non-bordered cells
|
||||
float CellPaddingX; // Padding from each borders. Locked in BeginTable()/Layout.
|
||||
float CellPaddingY; // Top and bottom padding. Reloaded during row change.
|
||||
float CellSpacingX1; // Spacing between non-bordered cells. Locked in BeginTable()/Layout.
|
||||
float CellSpacingX2;
|
||||
float InnerWidth; // User value passed to BeginTable(), see comments at the top of BeginTable() for details.
|
||||
float ColumnsGivenWidth; // Sum of current column width
|
||||
|
Reference in New Issue
Block a user