Add back difficulty panel spacing

This commit is contained in:
Dean Herbert
2020-10-12 20:26:20 +09:00
parent ce67f65084
commit fd8654cff3
4 changed files with 7 additions and 5 deletions

View File

@ -19,7 +19,7 @@ namespace osu.Game.Screens.Select.Carousel
switch (State.Value)
{
case CarouselItemState.Selected:
return DrawableCarouselBeatmapSet.HEIGHT + Children.Count(c => c.Visible) * DrawableCarouselBeatmap.HEIGHT;
return DrawableCarouselBeatmapSet.HEIGHT + Children.Count(c => c.Visible) * (DrawableCarouselBeatmap.CAROUSEL_BEATMAP_SPACING + DrawableCarouselBeatmap.HEIGHT);
default:
return DrawableCarouselBeatmapSet.HEIGHT;