diff --git a/osu.Game/Graphics/UserInterface/OsuButton.cs b/osu.Game/Graphics/UserInterface/OsuButton.cs index b132f41335..a59352ba16 100644 --- a/osu.Game/Graphics/UserInterface/OsuButton.cs +++ b/osu.Game/Graphics/UserInterface/OsuButton.cs @@ -91,6 +91,11 @@ namespace osu.Game.Graphics.UserInterface { if (backgroundColour == null) BackgroundColour = colours.BlueDark; + } + + protected override void LoadComplete() + { + base.LoadComplete(); Colour = enablementColour; Enabled.BindValueChanged(_ => this.FadeColour(enablementColour, 200, Easing.OutQuint));