1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 05:22:54 +08:00

Change format of rank tooltip

This commit is contained in:
Joehu 2020-08-17 22:07:04 -07:00
parent 848f3bbf51
commit e0383f6100

View File

@ -350,7 +350,7 @@ namespace osu.Game.Online.Leaderboards
{
public RankLabel(int? rank)
{
TooltipText = rank == null || rank < 1000 ? null : $"{rank}";
TooltipText = rank == null || rank < 1000 ? null : $"#{rank:N0}";
Child = new OsuSpriteText
{