mirror of https://github.com/ppy/osu
modeContainer -> screenContainer
This commit is contained in:
parent
c2d63eb0bd
commit
2a310f02bc
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue