Skip to content

Commit

Permalink
remove padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Miller committed Oct 7, 2024
1 parent 9576d8a commit bda06bc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Maui.DataGrid/DataGridHeaderRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ internal sealed class DataGridHeaderRow : Grid
new() { Width = new(1, GridUnitType.Auto) },
];

private readonly Thickness _headerCellPadding = new(0, 0, 4, 0);

private readonly Command<DataGridColumn> _sortCommand = new(OnSort, CanSort);

#endregion Fields
Expand Down Expand Up @@ -197,7 +195,6 @@ private DataGridCell CreateHeaderCell(DataGridColumn column)

var cellContent = new Grid
{
Padding = _headerCellPadding,
ColumnDefinitions = _headerColumnDefinitions,
RowDefinitions = _headerRowDefinitions,
};
Expand Down

0 comments on commit bda06bc

Please sign in to comment.