Remove ctor params from PlaylistsRoomPlaylist

This commit is contained in:
Dan Balasescu
2021-12-09 01:16:37 +09:00
parent 3be4d8b68d
commit 26f6c5e5a5
6 changed files with 80 additions and 56 deletions

View File

@ -44,9 +44,10 @@ namespace osu.Game.Screens.OnlinePlay.Components
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Bottom = 10 },
Child = playlist = new PlaylistsRoomPlaylist(true, true, true)
Child = playlist = new PlaylistsRoomPlaylist
{
RelativeSizeAxes = Axes.Both,
AllowSelection = true,
}
}
},