Use fixed-width for score display.

This commit is contained in:
Dean Herbert 2017-03-15 15:21:07 +09:00
parent dfc4bccbe0
commit 7bc0a1fdfe
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
1 changed files with 2 additions and 0 deletions

View File

@ -288,6 +288,7 @@ public GlowingSpriteText(string text, string font, int textSize, Color4 textColo
Origin = Anchor.Centre,
Font = font,
TextSize = textSize,
FixedWidth = true,
Text = text,
Colour = glowColour,
Shadow = false,
@ -299,6 +300,7 @@ public GlowingSpriteText(string text, string font, int textSize, Color4 textColo
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = font,
FixedWidth = true,
TextSize = textSize,
Text = text,
Colour = textColour,