1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 15:51:24 +08:00

order statistics before adding to resultpage

This commit is contained in:
Aergwyn
2017-12-30 18:07:53 +01:00
Unverified
parent 138d78309f
commit 1ef4ff6776
+1 -1
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()