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

Adjust kudosu count formatting

This commit is contained in:
Bartłomiej Dach 2021-03-17 23:32:08 +01:00
parent 08ffe425f9
commit f95ce90c95

View File

@ -53,7 +53,7 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
public new int Count
{
set => valueText.Text = value.ToString();
set => valueText.Text = value.ToString("N0");
}
public CountSection(string header)