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:
parent
f5c80ac2d5
commit
899b9f8060
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user