Fix second mono regression.

This commit is contained in:
Dean Herbert
2017-03-09 15:53:16 +09:00
parent d7497330b2
commit 1b532b0741

View File

@ -20,7 +20,9 @@ namespace osu.Game.Modes.UI
public override bool Contains(Vector2 screenSpacePos) => true;
protected override Container<Drawable> Content { get; }
protected override Container<Drawable> Content => content;
private Container<Drawable> content;
/// <summary>
/// A container for keeping track of DrawableHitObjects.
@ -34,7 +36,7 @@ namespace osu.Game.Modes.UI
RelativeSizeAxes = Axes.Both,
Children = new[]
{
Content = new Container
content = new Container
{
RelativeSizeAxes = Axes.Both,
}