Add number sign in front of profile rankings

This commit is contained in:
Joehu
2019-04-30 20:47:44 -07:00
parent 4201cbf810
commit 3cd6ccfc3d
2 changed files with 3 additions and 3 deletions

View File

@ -188,7 +188,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
}
}
public string TooltipText => User.Value?.Statistics?.Ranks.Global == null ? "" : $"{ranks[dayIndex].Value:#,##0}|{ranked_days - ranks[dayIndex].Key + 1}";
public string TooltipText => User.Value?.Statistics?.Ranks.Global == null ? "" : $"#{ranks[dayIndex].Value:#,##0}|{ranked_days - ranks[dayIndex].Key + 1}";
public ITooltip GetCustomTooltip() => new RankGraphTooltip();