1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-23 22:53:04 +08:00

Fix room auto start duration setting applied to the wrong component

This commit is contained in:
Salman Alshamrani 2024-11-23 22:16:11 -05:00
parent 7a973b0243
commit 8f5d513d46

View File

@ -438,7 +438,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
=> MaxParticipantsField.Text = room.MaxParticipants?.ToString();
private void updateRoomAutoStartDuration()
=> typeLabel.Text = room.AutoStartDuration.GetLocalisableDescription();
=> startModeDropdown.Current.Value = (StartMode)room.AutoStartDuration.TotalSeconds;
private void updateRoomPlaylist()
=> drawablePlaylist.Items.ReplaceRange(0, drawablePlaylist.Items.Count, room.Playlist);