Fix anchors + origins

This commit is contained in:
smoogipoo 2019-01-25 20:47:31 +09:00
parent 95e6785968
commit e2891ab1e9
2 changed files with 4 additions and 0 deletions

View File

@ -59,6 +59,8 @@ namespace osu.Game.Screens.Multi
public Multiplayer() public Multiplayer()
{ {
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
RelativeSizeAxes = Axes.Both; RelativeSizeAxes = Axes.Both;
InternalChild = waves = new MultiplayerWaveContainer InternalChild = waves = new MultiplayerWaveContainer

View File

@ -37,6 +37,8 @@ namespace osu.Game.Screens.Multi
protected MultiplayerSubScreen() protected MultiplayerSubScreen()
{ {
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
RelativeSizeAxes = Axes.Both; RelativeSizeAxes = Axes.Both;
} }