mirror of https://github.com/ppy/osu
Handle collection changed event
This commit is contained in:
parent
7ee81669f7
commit
ee4bca9ed1
|
@ -127,6 +127,14 @@ private void onPlayingUserStatesChanged(object sender, NotifyDictionaryChangedEv
|
|||
foreach (var (userId, _) in e.OldItems.AsNonNull())
|
||||
onUserStateRemoved(userId);
|
||||
break;
|
||||
|
||||
case NotifyDictionaryChangedAction.Replace:
|
||||
foreach (var (userId, _) in e.OldItems.AsNonNull())
|
||||
onUserStateRemoved(userId);
|
||||
|
||||
foreach (var (userId, state) in e.NewItems.AsNonNull())
|
||||
onUserStateAdded(userId, state);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue