Simplify vertical position calculations by including spacing in height definition

This commit is contained in:
Dean Herbert
2020-10-13 18:13:36 +09:00
parent b1ddb08a4e
commit 69650c16fc
4 changed files with 10 additions and 5 deletions

View File

@ -775,7 +775,7 @@ namespace osu.Game.Screens.Select
break;
}
scrollTarget += b.TotalHeight + DrawableCarouselBeatmap.CAROUSEL_BEATMAP_SPACING;
scrollTarget += b.TotalHeight;
}
}