From 7485a78128a7b25bef1f75f3d9c6f549ae1f90fc Mon Sep 17 00:00:00 2001 From: DrabWeb Date: Sat, 20 May 2017 03:14:22 -0300 Subject: [PATCH] Update framework --- osu-framework | 2 +- osu.Game/Overlays/Music/PlaylistItem.cs | 9 ++------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/osu-framework b/osu-framework index 4c76571784..d00a7df902 160000 --- a/osu-framework +++ b/osu-framework @@ -1 +1 @@ -Subproject commit 4c765717846fef9a141800782a5a968c2bc3a278 +Subproject commit d00a7df902074d0b3f1479904b7f322db9d39c1f diff --git a/osu.Game/Overlays/Music/PlaylistItem.cs b/osu.Game/Overlays/Music/PlaylistItem.cs index 3a3be53569..9b72cfce42 100644 --- a/osu.Game/Overlays/Music/PlaylistItem.cs +++ b/osu.Game/Overlays/Music/PlaylistItem.cs @@ -97,18 +97,13 @@ namespace osu.Game.Overlays.Music { text.Clear(); - var t = new List(); - - //space after the title to put a space between the title and artist - text.AddText(titleBind.Value + @" ", sprite => + //space after the title to put a space between the title and artist + titleSprites = text.AddText(titleBind.Value + @" ", sprite => { sprite.TextSize = 16; sprite.Font = @"Exo2.0-Regular"; - t.Add(sprite); }); - titleSprites = t; - text.AddText(artistBind.Value, sprite => { sprite.TextSize = 14;