Revert unnecessary changes

This commit is contained in:
Dean Herbert
2019-01-10 14:20:44 +09:00
parent 8cd058ed9a
commit 17bc933db2

View File

@ -27,16 +27,13 @@ namespace osu.Game.Rulesets.Osu.UI.Cursor
public GameplayCursor() public GameplayCursor()
{ {
InternalChildren = new Drawable[] InternalChild = fadeContainer = new Container
{ {
fadeContainer = new Container RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{ {
RelativeSizeAxes = Axes.Both, new CursorTrail { Depth = 1 }
Children = new Drawable[] }
{
new CursorTrail { Depth = 1 }
}
},
}; };
} }