1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 15:43:22 +08:00

add missing accent colour in control tab item

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-05-21 01:20:38 +07:00
parent 092d0f9b76
commit 236124496d
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -26,7 +26,10 @@ namespace osu.Game.Overlays
AccentColour = colourProvider.Light2;
}
protected override TabItem<string> CreateTabItem(string value) => new ControlTabItem(value);
protected override TabItem<string> CreateTabItem(string value) => new ControlTabItem(value)
{
AccentColour = AccentColour,
};
private class ControlTabItem : BreadcrumbTabItem
{