Remove more unnecessary changes

This commit is contained in:
smoogipoo
2018-07-19 17:04:51 +09:00
parent 54e288f09b
commit b7721edc80
16 changed files with 22 additions and 179 deletions

View File

@ -18,8 +18,6 @@ namespace osu.Game.Rulesets.Mania.Edit.Layers.Selection.Overlays
public HoldNoteMask(DrawableHoldNote hold)
: base(hold)
{
var holdObject = hold.HitObject;
InternalChildren = new Drawable[]
{
new HoldNoteNoteMask(hold.Head),
@ -29,8 +27,6 @@ namespace osu.Game.Rulesets.Mania.Edit.Layers.Selection.Overlays
AccentColour = Color4.Transparent
},
};
holdObject.ColumnChanged += _ => Position = hold.Position;
}
[BackgroundDependencyLoader]