From 3f577aae602fbd27b8c462ea7b6c419c8632c59b Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 9 Jan 2026 15:18:29 +0900 Subject: [PATCH 1/2] Fix now playing overlay buttons not showing toggle colour correctly Closes https://github.com/ppy/osu/issues/36280. --- osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs b/osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs index 31ac777eaa..8faa532216 100644 --- a/osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs +++ b/osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs @@ -93,7 +93,7 @@ namespace osu.Game.Graphics.UserInterface base.LoadComplete(); Colour = DimColour; - Enabled.BindValueChanged(_ => this.FadeColour(DimColour, 200, Easing.OutQuint), true); + Enabled.BindValueChanged(_ => content.FadeColour(DimColour, 200, Easing.OutQuint), true); FinishTransforms(true); } From a2d2c3287bc90836ecd383e678abd9170382a482 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 9 Jan 2026 16:27:33 +0900 Subject: [PATCH 2/2] Remove unnecessary and incorrect colour application --- osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs b/osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs index 8faa532216..87aa4547d4 100644 --- a/osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs +++ b/osu.Game/Graphics/UserInterface/OsuAnimatedButton.cs @@ -92,7 +92,6 @@ namespace osu.Game.Graphics.UserInterface { base.LoadComplete(); - Colour = DimColour; Enabled.BindValueChanged(_ => content.FadeColour(DimColour, 200, Easing.OutQuint), true); FinishTransforms(true); }