From 29d44d103d410b3e6fc24cdf693fbe62ac6c4c61 Mon Sep 17 00:00:00 2001 From: David Sparer Date: Fri, 28 Dec 2018 11:44:39 -0600 Subject: [PATCH] fixed bug preventing FullyObservableCollection from generating events --- mRemoteV1/Tools/CustomCollections/FullyObservableCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mRemoteV1/Tools/CustomCollections/FullyObservableCollection.cs b/mRemoteV1/Tools/CustomCollections/FullyObservableCollection.cs index b5156426..c9f4ed0d 100644 --- a/mRemoteV1/Tools/CustomCollections/FullyObservableCollection.cs +++ b/mRemoteV1/Tools/CustomCollections/FullyObservableCollection.cs @@ -10,7 +10,7 @@ namespace mRemoteNG.Tools.CustomCollections where T : INotifyPropertyChanged { private readonly IList _list = new List(); - private bool _eventsAllowed; + private bool _eventsAllowed = true; public int Count => _list.Count; public bool IsReadOnly => _list.IsReadOnly;