mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Fix incorrect sorting order
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user