mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:07:38 +08:00
Fix score order
This commit is contained in:
parent
717869225e
commit
7b82a5d792
@ -90,8 +90,7 @@ namespace osu.Game.Screens.Ranking
|
||||
|
||||
private class Flow : FillFlowContainer<ScorePanel>
|
||||
{
|
||||
// Todo: Order is wrong.
|
||||
public override IEnumerable<Drawable> FlowingChildren => AliveInternalChildren.OfType<ScorePanel>().OrderBy(s => s.Score.TotalScore);
|
||||
public override IEnumerable<Drawable> FlowingChildren => AliveInternalChildren.OfType<ScorePanel>().OrderByDescending(s => s.Score.TotalScore).ThenByDescending(s => s.Score.OnlineScoreID);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user