More styling.

This commit is contained in:
Adonais Romero González
2016-10-08 21:58:53 -05:00
parent 0d18680eeb
commit accf365fd1
4 changed files with 10 additions and 3 deletions

View File

@ -16,6 +16,12 @@ namespace osu.Game.Graphics.UserInterface
/// </summary>
public uint LeadingZeroes = 0;
public override void Load()
{
base.Load();
countSpriteText.FixedWidth = true;
}
protected override string formatCount(ulong count)
{
return count.ToString("D" + LeadingZeroes);