1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 10:22:56 +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
parent ccb69d16d9
commit 61bbb66996

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