1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00

Adjust simple statistic item font sizes

This commit is contained in:
Bartłomiej Dach 2020-08-26 21:43:33 +02:00
parent d81d538b7e
commit c3197da3da

View File

@ -41,13 +41,14 @@ namespace osu.Game.Screens.Ranking.Statistics
{ {
Text = Name, Text = Name,
Anchor = Anchor.CentreLeft, Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft Origin = Anchor.CentreLeft,
Font = OsuFont.GetFont(size: 14)
}, },
value = new OsuSpriteText value = new OsuSpriteText
{ {
Anchor = Anchor.CentreRight, Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight, Origin = Anchor.CentreRight,
Font = OsuFont.Torus.With(weight: FontWeight.Bold) Font = OsuFont.GetFont(size: 14, weight: FontWeight.Bold)
} }
}); });
} }