Remove transition on items list

This commit is contained in:
TheXamlGuy
2024-07-17 21:50:23 +01:00
parent 93c7a43ab4
commit b08976025e
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -130,7 +130,7 @@ public partial class Observable<TValue> :
{
}
private partial void OnValueChanged(TValue? value) => OnValueChanged();
partial void OnValueChanged(TValue? value) => OnValueChanged();
}
public partial class Observable<TKey, TValue> :
@@ -160,5 +160,5 @@ public partial class Observable<TKey, TValue> :
{
}
private partial void OnValueChanged(TValue? value) => OnValueChanged();
partial void OnValueChanged(TValue? value) => OnValueChanged();
}