Remove unnecessary extra GridContainer

This commit is contained in:
smoogipoo 2021-10-15 20:18:25 +09:00
parent 6cc8184041
commit a70d7e4feb

View File

@ -80,14 +80,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
}, true); }, true);
} }
protected override Drawable CreateMainContent() => new GridContainer protected override Drawable CreateMainContent() => new Container
{
RelativeSizeAxes = Axes.Both,
Content = new[]
{
new Drawable[]
{
new Container
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Horizontal = 5, Vertical = 10 }, Padding = new MarginPadding { Horizontal = 5, Vertical = 10 },
@ -187,9 +180,6 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
} }
} }
} }
}
},
},
}; };
protected override Drawable CreateFooter() => new MultiplayerMatchFooter protected override Drawable CreateFooter() => new MultiplayerMatchFooter