1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-05 11:43:01 +08:00

Remove unnecessary FillFlowContainer from section

This commit is contained in:
Dean Herbert 2022-03-15 16:46:57 +09:00
parent 9e476ced63
commit 4ab5d6e3f0

View File

@ -27,11 +27,10 @@ namespace osu.Game.Screens.Edit.Components
Children = new Drawable[]
{
new SectionHeader(sectionName),
Content = new FillFlowContainer
Content = new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
},
}
};
@ -70,4 +69,4 @@ namespace osu.Game.Screens.Edit.Components
}
}
}
}
}