1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 21:01:01 +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
Unverified
parent 092d0f9b76
commit 236124496d
@@ -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
{