1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-12 17:57:21 +08:00

Fix slider selection input handled outside path

This commit is contained in:
smoogipoo 2019-11-05 17:31:52 +09:00
parent 621f4387c9
commit d77882c21b

View File

@ -43,5 +43,7 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
Size = body.Size; Size = body.Size;
OriginPosition = body.PathOffset; OriginPosition = body.PathOffset;
} }
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => body.ReceivePositionalInputAt(screenSpacePos);
} }
} }