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:
parent
327d8c213b
commit
14a961c95b
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user