Skip to content

Commit

Permalink
fix: fix SuspendNotifications
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre58 committed Aug 1, 2024
1 parent 6ef2bc7 commit 419449f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 419449f

Please sign in to comment.