modeContainer -> screenContainer

This commit is contained in:
smoogipoo 2017-10-02 09:27:27 +09:00
parent c2d63eb0bd
commit 2a310f02bc
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ internal class Editor : OsuScreen
internal override bool ShowOverlays => false;
private readonly Box bottomBackground;
private readonly Container modeContainer;
private readonly Container screenContainer;
private EditorScreen currentScreen;
@ -81,7 +81,7 @@ public Editor()
}
}
},
modeContainer = new Container
screenContainer = new Container
{
Name = "Screen container",
RelativeSizeAxes = Axes.Both,
@ -110,7 +110,7 @@ private void onModeChanged(EditorScreenMode mode)
break;
}
modeContainer.Add(currentScreen);
screenContainer.Add(currentScreen);
}
protected override void OnResuming(Screen last)