Recolour LevelProgressBar

This commit is contained in:
TheWildTree
2020-01-30 18:18:42 +01:00
parent 754200d843
commit de9a1737a5

View File

@ -29,7 +29,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
} }
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load(OsuColour colours) private void load(OverlayColourProvider colourProvider)
{ {
InternalChildren = new Drawable[] InternalChildren = new Drawable[]
{ {
@ -42,7 +42,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
BackgroundColour = Color4.Black, BackgroundColour = Color4.Black,
Direction = BarDirection.LeftToRight, Direction = BarDirection.LeftToRight,
AccentColour = colours.Yellow AccentColour = colourProvider.Highlight1
} }
}, },
levelProgressText = new OsuSpriteText levelProgressText = new OsuSpriteText