Skip to content

Commit 8cf7ded

Browse files
committed
changed RowHeight default value to double.NaN
1 parent 1599c21 commit 8cf7ded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TableView.Properties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public partial class TableView
3333
/// <summary>
3434
/// Identifies the RowHeight dependency property.
3535
/// </summary>
36-
public static readonly DependencyProperty RowHeightProperty = DependencyProperty.Register(nameof(RowHeight), typeof(double), typeof(TableView), new PropertyMetadata(40d));
36+
public static readonly DependencyProperty RowHeightProperty = DependencyProperty.Register(nameof(RowHeight), typeof(double), typeof(TableView), new PropertyMetadata(double.NaN));
3737

3838
/// <summary>
3939
/// Identifies the RowMaxHeight dependency property.

0 commit comments

Comments
 (0)