mirror of
https://github.com/ppy/osu
synced 2025-02-16 10:07:11 +00:00
CI fixes
This commit is contained in:
parent
9a383eee1a
commit
5fd43d42f4
@ -116,7 +116,7 @@ namespace osu.Game.Overlays.Profile.Sections
|
||||
return;
|
||||
}
|
||||
|
||||
LoadComponentsAsync(items.Where(item => AllowCreate(item)).Select(CreateDrawableItem), drawables =>
|
||||
LoadComponentsAsync(items.Where(AllowCreate).Select(CreateDrawableItem), drawables =>
|
||||
{
|
||||
missingText.Hide();
|
||||
moreButton.FadeTo(items.Count == ItemsPerPage ? 1 : 0);
|
||||
|
@ -45,10 +45,10 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
|
||||
switch (type)
|
||||
{
|
||||
default:
|
||||
return new DrawablePerformanceScore(item, includeWeight ? Math.Pow(0.95, ItemsContainer.Count) : (double?)null);
|
||||
return new DrawablePerformanceScore(item, includeWeight ? Math.Pow(0.95, ItemsContainer.Count) : (double?)null);
|
||||
|
||||
case ScoreType.Recent:
|
||||
return new DrawableTotalScore(item);
|
||||
return new DrawableTotalScore(item);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user