diff --git a/src/Avalonia.Base/PropertyStore/ValueStore.cs b/src/Avalonia.Base/PropertyStore/ValueStore.cs index fe47f06d89..701bef2ccc 100644 --- a/src/Avalonia.Base/PropertyStore/ValueStore.cs +++ b/src/Avalonia.Base/PropertyStore/ValueStore.cs @@ -572,7 +572,8 @@ namespace Avalonia.PropertyStore private void InsertFrame(ValueFrame frame) { - Debug.Assert(!_frames.Contains(frame)); + // Uncomment this line when #8549 is fixed. + //Debug.Assert(!_frames.Contains(frame)); var index = BinarySearchFrame(frame.Priority); _frames.Insert(index, frame);