1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 15:33:05 +08:00

Fix incorrect sorting order

This commit is contained in:
smoogipoo 2020-05-21 22:26:04 +09:00
parent f5c80ac2d5
commit 899b9f8060

View File

@ -122,7 +122,7 @@ namespace osu.Game.Screens.Ranking
private IEnumerable<Drawable> applySorting(IEnumerable<Drawable> drawables) => drawables.OfType<ScorePanel>()
.OrderByDescending(s => s.Score.TotalScore)
.ThenByDescending(s => s.Score.OnlineScoreID);
.ThenBy(s => s.Score.OnlineScoreID);
}
private class Scroll : OsuScrollContainer