Fix account creation overlay not working

Regressed with screen stack changes.
This commit is contained in:
Dean Herbert 2019-02-15 17:01:51 +09:00
parent 31bbefb9a8
commit 5d502250d8
1 changed files with 4 additions and 1 deletions

View File

@ -70,7 +70,10 @@ private void load(OsuColour colours, APIAccess api)
Colour = Color4.Black,
Alpha = 0.9f,
},
welcomeScreen = new ScreenWelcome(),
new ScreenStack(welcomeScreen = new ScreenWelcome())
{
RelativeSizeAxes = Axes.Both,
},
}
}
}