1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 04:24:10 +08:00

sort resultpage hitresults descending

HitCount was good to bad but HitResult is the opposite. To account for this just descending order on the result page.
This commit is contained in:
Aergwyn
2017-12-30 21:27:15 +01:00
Unverified
parent ccb69d16d9
commit 61bbb66996
+1 -1
View File
@@ -164,7 +164,7 @@ namespace osu.Game.Screens.Ranking
}
};
statisticsContainer.ChildrenEnumerable = Score.Statistics.OrderBy(p => p.Key).Select(s => new DrawableScoreStatistic(s));
statisticsContainer.ChildrenEnumerable = Score.Statistics.OrderByDescending(p => p.Key).Select(s => new DrawableScoreStatistic(s));
}
protected override void LoadComplete()