1
0
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:
Aergwyn 2017-12-30 18:07:53 +01:00
parent 138d78309f
commit 1ef4ff6776

View File

@ -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()