Merge pull request #23708 from peppy/labelled-slider-visibility

Adjust background colour used in `LabelledDrawable`s to allow visibility of some elements
This commit is contained in:
Dean Herbert 2023-06-01 13:08:17 +09:00 committed by GitHub
commit 55a3847036
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,7 +152,7 @@ namespace osu.Game.Graphics.UserInterfaceV2
[BackgroundDependencyLoader(true)]
private void load(OverlayColourProvider? colourProvider, OsuColour osuColour)
{
background.Colour = colourProvider?.Background5 ?? Color4Extensions.FromHex(@"1c2125");
background.Colour = colourProvider?.Background4 ?? Color4Extensions.FromHex(@"1c2125");
descriptionText.Colour = osuColour.Yellow;
}