1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 13:37:25 +08:00

Remove invariance in the OverlayTabItem

This commit is contained in:
Andrei Zavatski 2020-01-22 04:41:10 +03:00
parent 327d8c213b
commit 14a961c95b

View File

@ -78,7 +78,7 @@ namespace osu.Game.Overlays
public OverlayHeaderTabItem(T value)
: base(value)
{
Text.Text = value.ToString().ToLowerInvariant();
Text.Text = value.ToString().ToLower();
Text.Font = OsuFont.GetFont(size: 14);
Bar.ExpandedSize = 5;
}