1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 02:13:38 +08:00

Fix accent colour not always propagating to statistics display

This commit is contained in:
Dean Herbert
2025-06-01 15:12:05 +09:00
Unverified
parent b650309706
commit e1ebb7ccca
@@ -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();
}
}