Fix mode icon not being updated for correct ruleset

This commit is contained in:
smoogipoo
2018-12-27 18:16:17 +09:00
parent 9a5630b3d5
commit eaba9e1378
6 changed files with 18 additions and 8 deletions

View File

@ -174,9 +174,10 @@ namespace osu.Game.Screens.Multi.Lounge.Components
participantCount.ParticipantCount.BindTo(bindings.ParticipantCount);
participantCount.MaxParticipants.BindTo(bindings.MaxParticipants);
beatmapTypeInfo.Beatmap.BindTo(bindings.CurrentBeatmap);
beatmapTypeInfo.Ruleset.BindTo(bindings.CurrentRuleset);
beatmapTypeInfo.Type.BindTo(bindings.Type);
background.Beatmap.BindTo(bindings.CurrentBeatmap);
beatmapTypeInfo.Beatmap.BindTo(bindings.CurrentBeatmap);
bindings.Status.BindValueChanged(displayStatus);
bindings.Participants.BindValueChanged(p => participantsFlow.ChildrenEnumerable = p.Select(u => new UserTile(u)));