mirror of
https://github.com/osukey/osukey.git
synced 2025-05-04 21:27:22 +09: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)
|
public OverlayHeaderTabItem(T value)
|
||||||
: base(value)
|
: base(value)
|
||||||
{
|
{
|
||||||
Text.Text = value.ToString().ToLowerInvariant();
|
Text.Text = value.ToString().ToLower();
|
||||||
Text.Font = OsuFont.GetFont(size: 14);
|
Text.Font = OsuFont.GetFont(size: 14);
|
||||||
Bar.ExpandedSize = 5;
|
Bar.ExpandedSize = 5;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user