1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 10:02:59 +08:00

Fix leading space before percent sign

This commit is contained in:
Dean Herbert 2017-11-22 11:17:10 +09:00
parent c06d6d0bbb
commit 855acc9401

View File

@ -104,14 +104,14 @@ namespace osu.Game.Screens.Edit.Components
{
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
Text = $"{value:P0}",
Text = $"{value:0%}",
TextSize = 14,
},
textBold = new OsuSpriteText
{
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
Text = $"{value:P0}",
Text = $"{value:0%}",
TextSize = 14,
Font = @"Exo2.0-Bold",
Alpha = 0,