Use SortedStatistics where needed

This commit is contained in:
TheWildTree
2020-02-07 21:12:21 +01:00
parent 59cf2037d0
commit 2770fb71b2
3 changed files with 4 additions and 6 deletions

View File

@ -188,7 +188,7 @@ namespace osu.Game.Screens.Ranking.Pages
},
};
statisticsContainer.ChildrenEnumerable = Score.Statistics.OrderByDescending(p => p.Key).Select(s => new DrawableScoreStatistic(s));
statisticsContainer.ChildrenEnumerable = Score.SortedStatistics.Select(s => new DrawableScoreStatistic(s));
}
protected override void LoadComplete()