mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +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>()
|
private IEnumerable<Drawable> applySorting(IEnumerable<Drawable> drawables) => drawables.OfType<ScorePanel>()
|
||||||
.OrderByDescending(s => s.Score.TotalScore)
|
.OrderByDescending(s => s.Score.TotalScore)
|
||||||
.ThenByDescending(s => s.Score.OnlineScoreID);
|
.ThenBy(s => s.Score.OnlineScoreID);
|
||||||
}
|
}
|
||||||
|
|
||||||
private class Scroll : OsuScrollContainer
|
private class Scroll : OsuScrollContainer
|
||||||
|
Reference in New Issue
Block a user