diff --git a/src/MyNet.Utilities/Collections/ExtendedObservableCollection.cs b/src/MyNet.Utilities/Collections/ExtendedObservableCollection.cs index c544ad9..89244c2 100644 --- a/src/MyNet.Utilities/Collections/ExtendedObservableCollection.cs +++ b/src/MyNet.Utilities/Collections/ExtendedObservableCollection.cs @@ -141,7 +141,7 @@ public IDisposable SuspendNotifications() _suspendCount = false; _suspendNotifications = false; OnPropertyChanged(new PropertyChangedEventArgs("Count")); - OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace)); + OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, null)); }).Defer(); }