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
No known key found for this signature in database
GPG Key ID: B19884DAC3A5BF3F
2 changed files with
0 additions and
2 deletions
-
src/Avalonia.Controls/ColumnDefinitions.cs
-
src/Avalonia.Controls/RowDefinitions.cs
|
|
|
@ -20,7 +20,6 @@ namespace Avalonia.Controls |
|
|
|
{ |
|
|
|
ResetBehavior = ResetBehavior.Remove; |
|
|
|
CollectionChanged += OnCollectionChanged; |
|
|
|
this.TrackItemPropertyChanged(delegate { IsDirty = true; }); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
@ -18,7 +18,6 @@ namespace Avalonia.Controls |
|
|
|
{ |
|
|
|
ResetBehavior = ResetBehavior.Remove; |
|
|
|
CollectionChanged += OnCollectionChanged; |
|
|
|
this.TrackItemPropertyChanged(delegate { IsDirty = true; }); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|