From e1ebb7ccca9254674e10529091bf433a7468c2ed Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sun, 1 Jun 2025 15:12:05 +0900 Subject: [PATCH] Fix accent colour not always propagating to statistics display --- .../BeatmapTitleWedge_DifficultyStatisticsDisplay.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/osu.Game/Screens/SelectV2/BeatmapTitleWedge_DifficultyStatisticsDisplay.cs b/osu.Game/Screens/SelectV2/BeatmapTitleWedge_DifficultyStatisticsDisplay.cs index a185448f36..571fc82fc1 100644 --- a/osu.Game/Screens/SelectV2/BeatmapTitleWedge_DifficultyStatisticsDisplay.cs +++ b/osu.Game/Screens/SelectV2/BeatmapTitleWedge_DifficultyStatisticsDisplay.cs @@ -179,7 +179,11 @@ namespace osu.Game.Screens.SelectV2 } else { - statisticsFlow.ChildrenEnumerable = statistics.Select(d => new StatisticDifficulty { Value = d }); + statisticsFlow.ChildrenEnumerable = statistics.Select(d => new StatisticDifficulty + { + AccentColour = accentColour, + Value = d + }); updateStatisticsSizing(); } }