From 17bc933db2409d8b34f4a93442e2ad1e8a08476b Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 10 Jan 2019 14:20:44 +0900 Subject: [PATCH] Revert unnecessary changes --- osu.Game.Rulesets.Osu/UI/Cursor/GameplayCursor.cs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/osu.Game.Rulesets.Osu/UI/Cursor/GameplayCursor.cs b/osu.Game.Rulesets.Osu/UI/Cursor/GameplayCursor.cs index 332d6d4860..80beb62d6c 100644 --- a/osu.Game.Rulesets.Osu/UI/Cursor/GameplayCursor.cs +++ b/osu.Game.Rulesets.Osu/UI/Cursor/GameplayCursor.cs @@ -27,16 +27,13 @@ namespace osu.Game.Rulesets.Osu.UI.Cursor public GameplayCursor() { - InternalChildren = new Drawable[] + InternalChild = fadeContainer = new Container { - fadeContainer = new Container + RelativeSizeAxes = Axes.Both, + Children = new Drawable[] { - RelativeSizeAxes = Axes.Both, - Children = new Drawable[] - { - new CursorTrail { Depth = 1 } - } - }, + new CursorTrail { Depth = 1 } + } }; }