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;