mirror of
https://github.com/ppy/osu.git
synced 2025-03-20 07:17:31 +08:00
order statistics before adding to resultpage
This commit is contained in:
parent
138d78309f
commit
1ef4ff6776
@ -165,7 +165,7 @@ namespace osu.Game.Screens.Ranking
|
||||
}
|
||||
};
|
||||
|
||||
statisticsContainer.ChildrenEnumerable = Score.Statistics.Select(s => new DrawableScoreStatistic(s));
|
||||
statisticsContainer.ChildrenEnumerable = Score.Statistics.OrderBy(p => p.Key).Select(s => new DrawableScoreStatistic(s));
|
||||
}
|
||||
|
||||
protected override void LoadComplete()
|
||||
|
Loading…
x
Reference in New Issue
Block a user