Fix frame end task race condition in ScrollPanelWidget

This commit is contained in:
Curtis Shmyr
2016-11-13 07:09:47 +00:00
committed by Paul Chote
parent 9d7413ab3d
commit 33e1a6b2dd
5 changed files with 60 additions and 41 deletions

View File

@@ -16,11 +16,11 @@ namespace OpenRA.Primitives
{
public interface IObservableCollection
{
event Action<object> OnAdd;
event Action<object> OnRemove;
event Action<int> OnRemoveAt;
event Action<object, object> OnSet;
event Action OnRefresh;
event Action<IObservableCollection, object> OnAdd;
event Action<IObservableCollection, object> OnRemove;
event Action<IObservableCollection, int> OnRemoveAt;
event Action<IObservableCollection, object, object> OnSet;
event Action<IObservableCollection> OnRefresh;
IEnumerable ObservedItems { get; }
}
}