mirror of https://github.com/ppy/osu
Remove invariance in the OverlayTabItem
This commit is contained in:
parent
327d8c213b
commit
14a961c95b
|
@ -78,7 +78,7 @@ private class OverlayHeaderTabItem : OverlayTabItem
|
|||
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