1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:43:01 +08:00

move missing newline to front of "Plays with..."

This commit is contained in:
FreezyLemon 2018-12-30 22:40:17 +01:00
parent 1b35eae1ba
commit 0047f29ec8

View File

@ -396,11 +396,11 @@ namespace osu.Game.Overlays.Profile
infoTextLeft.NewLine();
infoTextLeft.AddText("Last seen ", lightText);
infoTextLeft.AddText(new DrawableDate(user.LastVisit.Value), boldItalic);
infoTextLeft.NewParagraph();
}
if (user.PlayStyle?.Length > 0)
{
infoTextLeft.NewParagraph();
infoTextLeft.AddText("Plays with ", lightText);
infoTextLeft.AddText(string.Join(", ", user.PlayStyle), boldItalic);
}