mirror of https://github.com/ppy/osu
Move padding to fill, not scroll container
This commit is contained in:
parent
d1f39b6b00
commit
2c0ac8cc36
|
@ -70,13 +70,13 @@ private void load()
|
|||
RelativeSizeAxes = Axes.Both,
|
||||
Anchor = Anchor.TopCentre,
|
||||
Origin = Anchor.TopCentre,
|
||||
Padding = new MarginPadding { Bottom = backButton.Height },
|
||||
Child = flow = new FillFlowContainer<TDrawable>
|
||||
{
|
||||
Direction = FillDirection.Vertical,
|
||||
RelativeSizeAxes = Axes.X,
|
||||
AutoSizeAxes = Axes.Y,
|
||||
Spacing = new Vector2(20)
|
||||
Spacing = new Vector2(20),
|
||||
Padding = new MarginPadding { Bottom = backButton.Height * 2 },
|
||||
},
|
||||
},
|
||||
backButton,
|
||||
|
|
Loading…
Reference in New Issue