Remove unnecessary variable

This commit is contained in:
David Zhao 2019-03-11 17:47:03 +09:00
parent 0b64af5e02
commit aeae6143c1
1 changed files with 1 additions and 2 deletions

View File

@ -38,7 +38,6 @@ public class Multiplayer : OsuScreen, IOnlineComponent
private readonly OsuButton createButton;
private readonly LoungeSubScreen loungeSubScreen;
private readonly ScreenStack screenStack;
private ParallaxContainer backgroundParallax;
private readonly IBindable<bool> isIdle = new BindableBool();
@ -101,7 +100,7 @@ public Multiplayer()
Padding = new MarginPadding { Top = Header.HEIGHT },
Children = new CompositeDrawable[]
{
backgroundParallax = new ParallaxContainer
new ParallaxContainer
{
RelativeSizeAxes = Axes.Both,
Child = backgroundScreenStack = new BackgroundScreenStack { RelativeSizeAxes = Axes.Both },