1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 18:42:56 +08:00

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()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
RelativeSizeAxes = Axes.Both;
InternalChild = waves = new MultiplayerWaveContainer

View File

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