Fix double applied padding

This commit is contained in:
Dean Herbert 2022-04-19 16:53:41 +09:00
parent 1490502d4c
commit 3378c91901

View File

@ -165,7 +165,10 @@ namespace osu.Game.Overlays
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding(20),
Padding = new MarginPadding(20)
{
Top = 0 // provided by the stack container above.
},
Child = new GridContainer
{
RelativeSizeAxes = Axes.X,