From a8be437103bd0b83b7a306b3ed76b0ceb337270d Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sat, 15 Feb 2020 20:29:38 +0900 Subject: [PATCH] Fix failing tests --- osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs b/osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs index ed48d45501..75c751aa61 100644 --- a/osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs +++ b/osu.Game/Screens/Multi/DrawableRoomPlaylistItem.cs @@ -189,16 +189,16 @@ namespace osu.Game.Screens.Multi X = -18, Children = new Drawable[] { + new PlaylistDownloadButton(item.Beatmap.Value.BeatmapSet) + { + Size = new Vector2(50, 30) + }, new IconButton { Icon = FontAwesome.Solid.MinusSquare, Alpha = allowEdit ? 1 : 0, Action = () => RequestDeletion?.Invoke(Model), }, - new PlaylistDownloadButton(item.Beatmap.Value.BeatmapSet) - { - Size = new Vector2(50, 30) - } } } }