Fix percentage-formatted displays containing a space

This commit is contained in:
smoogipoo
2020-01-29 19:51:24 +09:00
parent d401af2cdd
commit 76af8bea5d
5 changed files with 5 additions and 5 deletions

View File

@ -177,7 +177,7 @@ namespace osu.Game.Graphics.UserInterface
if (DisplayAsPercentage)
{
TooltipText = floatValue.ToString("P0");
TooltipText = floatValue.ToString("0%");
}
else
{