1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-25 06:42:56 +08:00

Fix UserRankPanel not updating on ruleset change

This commit is contained in:
Salman Alshamrani 2024-11-17 18:32:12 -05:00
parent 28f87407f6
commit 07609b6267

View File

@ -58,7 +58,8 @@ namespace osu.Game.Users
if (statisticsProvider != null)
{
statisticsUpdate = statisticsProvider.StatisticsUpdate.GetBoundCopy();
statisticsUpdate.BindValueChanged(_ => updateDisplay(), true);
statisticsUpdate.BindValueChanged(_ => updateDisplay());
ruleset.BindValueChanged(_ => updateDisplay(), true);
}
}