1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:02:55 +08:00

Update framework

This commit is contained in:
DrabWeb 2017-05-20 03:14:22 -03:00
parent 139b03a1ce
commit 7485a78128
2 changed files with 3 additions and 8 deletions

@ -1 +1 @@
Subproject commit 4c765717846fef9a141800782a5a968c2bc3a278
Subproject commit d00a7df902074d0b3f1479904b7f322db9d39c1f

View File

@ -97,18 +97,13 @@ namespace osu.Game.Overlays.Music
{
text.Clear();
var t = new List<SpriteText>();
//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;