Rename recent participants

This commit is contained in:
smoogipoo
2020-02-27 19:42:28 +09:00
parent 22862256c1
commit 085968dd7f
4 changed files with 9 additions and 9 deletions

View File

@ -59,7 +59,7 @@ namespace osu.Game.Screens.Multi.Components
[BackgroundDependencyLoader]
private void load()
{
Participants.CollectionChanged += (_, __) => updateParticipants();
RecentParticipants.CollectionChanged += (_, __) => updateParticipants();
updateParticipants();
}
@ -82,8 +82,8 @@ namespace osu.Game.Screens.Multi.Components
Spacing = new Vector2(10)
};
for (int i = 0; i < Participants.Count; i++)
tiles.Add(new UserTile { User = Participants[i] });
for (int i = 0; i < RecentParticipants.Count; i++)
tiles.Add(new UserTile { User = RecentParticipants[i] });
AddInternal(tiles);