1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

call builder finish before ending curve

This commit is contained in:
OliBomby 2023-12-03 21:43:37 +01:00
parent bcf2effae9
commit ca55a7b2bf

View File

@ -197,7 +197,11 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders
base.OnDragEnd(e);
if (state == SliderPlacementState.Drawing)
{
bSplineBuilder.Finish();
updateSliderPathFromBSplineBuilder();
endCurve();
}
}
protected override void OnMouseUp(MouseUpEvent e)