Browse Source

Dont flag the Row/ColDefinition list dirty when the child Row/ColDefinition's child property is changed.

pull/2563/head
Jumar Macato 7 years ago
parent
commit
77c4c71932
No known key found for this signature in database GPG Key ID: B19884DAC3A5BF3F
  1. 1
      src/Avalonia.Controls/ColumnDefinitions.cs
  2. 1
      src/Avalonia.Controls/RowDefinitions.cs

1
src/Avalonia.Controls/ColumnDefinitions.cs

@ -20,7 +20,6 @@ namespace Avalonia.Controls
{
ResetBehavior = ResetBehavior.Remove;
CollectionChanged += OnCollectionChanged;
this.TrackItemPropertyChanged(delegate { IsDirty = true; });
}
/// <summary>

1
src/Avalonia.Controls/RowDefinitions.cs

@ -18,7 +18,6 @@ namespace Avalonia.Controls
{
ResetBehavior = ResetBehavior.Remove;
CollectionChanged += OnCollectionChanged;
this.TrackItemPropertyChanged(delegate { IsDirty = true; });
}
/// <summary>

Loading…
Cancel
Save