mirror of https://github.com/ppy/osu
Use SortedStatistics where needed
This commit is contained in:
parent
59cf2037d0
commit
2770fb71b2
|
@ -82,7 +82,7 @@ private TableColumn[] createHeaders(ScoreInfo score)
|
|||
new TableColumn("max combo", Anchor.CentreLeft, new Dimension(GridSizeMode.Distributed, minSize: 70, maxSize: 90))
|
||||
};
|
||||
|
||||
foreach (var statistic in score.Statistics)
|
||||
foreach (var statistic in score.SortedStatistics)
|
||||
columns.Add(new TableColumn(statistic.Key.GetDescription(), Anchor.CentreLeft, new Dimension(GridSizeMode.Distributed, minSize: 50, maxSize: 70)));
|
||||
|
||||
columns.AddRange(new[]
|
||||
|
@ -150,7 +150,7 @@ private Drawable[] createContent(int index, ScoreInfo score)
|
|||
}
|
||||
});
|
||||
|
||||
foreach (var kvp in score.Statistics)
|
||||
foreach (var kvp in score.SortedStatistics)
|
||||
{
|
||||
content.Add(new OsuSpriteText
|
||||
{
|
||||
|
|
|
@ -99,9 +99,7 @@ public ScoreInfo Score
|
|||
maxComboColumn.Text = $@"{value.MaxCombo:N0}x";
|
||||
ppColumn.Text = $@"{value.PP:N0}";
|
||||
|
||||
statisticsColumns.ChildrenEnumerable = value.Statistics
|
||||
.OrderByDescending(pair => pair.Key)
|
||||
.Select(kvp => createStatisticsColumn(kvp.Key, kvp.Value));
|
||||
statisticsColumns.ChildrenEnumerable = value.SortedStatistics.Select(kvp => createStatisticsColumn(kvp.Key, kvp.Value));
|
||||
modsColumn.Mods = value.Mods;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -188,7 +188,7 @@ private void load(OsuColour colours)
|
|||
},
|
||||
};
|
||||
|
||||
statisticsContainer.ChildrenEnumerable = Score.Statistics.OrderByDescending(p => p.Key).Select(s => new DrawableScoreStatistic(s));
|
||||
statisticsContainer.ChildrenEnumerable = Score.SortedStatistics.Select(s => new DrawableScoreStatistic(s));
|
||||
}
|
||||
|
||||
protected override void LoadComplete()
|
||||
|
|
Loading…
Reference in New Issue