mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Rename recent participants
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user