1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 08:09:54 +08:00

Fix not being able to drag non-snaked sliders (#6600)

Fix not being able to drag non-snaked sliders
This commit is contained in:
Dean Herbert
2019-10-26 10:47:21 +09:00
committed by GitHub
Unverified
@@ -38,6 +38,8 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders
public override Vector2 SelectionPoint => HeadBlueprint.SelectionPoint;
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => BodyPiece.ReceivePositionalInputAt(screenSpacePos);
protected virtual SliderCircleSelectionBlueprint CreateCircleSelectionBlueprint(DrawableSlider slider, SliderPosition position) => new SliderCircleSelectionBlueprint(slider, position);
}
}