Avoid usage of AutoSize for DrawableCarouselItems in general

This commit is contained in:
Dean Herbert
2020-10-13 16:33:37 +09:00
parent cecdf14f53
commit ded09b78cb
2 changed files with 7 additions and 7 deletions

View File

@ -192,8 +192,7 @@ namespace osu.Game.Screens.Select.Carousel
beatmapContainer = new Container<DrawableCarouselItem>
{
X = 100,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.Both,
ChildrenEnumerable = visibleBeatmaps
};