sort resultpage hitresults descending

HitCount was good to bad but HitResult is the opposite. To account for this just descending order on the result page.
This commit is contained in:
Aergwyn 2017-12-30 21:27:15 +01:00
parent ccb69d16d9
commit 61bbb66996
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ private void load(OsuColour colours)
}
};
statisticsContainer.ChildrenEnumerable = Score.Statistics.OrderBy(p => p.Key).Select(s => new DrawableScoreStatistic(s));
statisticsContainer.ChildrenEnumerable = Score.Statistics.OrderByDescending(p => p.Key).Select(s => new DrawableScoreStatistic(s));
}
protected override void LoadComplete()