diff --git a/osu.Game/Rulesets/Edit/Layers/Selection/SelectionLayer.cs b/osu.Game/Rulesets/Edit/Layers/Selection/SelectionLayer.cs index e7acf05345..af6a4144fd 100644 --- a/osu.Game/Rulesets/Edit/Layers/Selection/SelectionLayer.cs +++ b/osu.Game/Rulesets/Edit/Layers/Selection/SelectionLayer.cs @@ -111,10 +111,6 @@ namespace osu.Game.Rulesets.Edit.Layers.Selection if (selectedHitObjects.Count == 0) return; - // Due to https://github.com/ppy/osu-framework/issues/1382, we may get here through both - // OnDragEnd and OnClick methods within a single frame, OnMouseDown doesn't help us here - captureBox?.Hide(); - AddInternal(captureBox = new CaptureBox(this, selectedHitObjects.ToList())); } }