1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 22:13:20 +08:00

Format score same as expanded panel

This commit is contained in:
smoogipoo 2020-05-26 15:56:56 +09:00
parent b53b97e1cb
commit 1768cbd131

View File

@ -160,7 +160,7 @@ namespace osu.Game.Screens.Ranking.Contracted
{ {
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
Text = score.TotalScore.ToString(), Text = score.TotalScore.ToString("N0"),
Font = OsuFont.GetFont(size: 20, weight: FontWeight.Medium, fixedWidth: true), Font = OsuFont.GetFont(size: 20, weight: FontWeight.Medium, fixedWidth: true),
Spacing = new Vector2(-1, 0) Spacing = new Vector2(-1, 0)
}, },