1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 07:42:57 +08:00

Fix OnDragStart on macOS

This commit is contained in:
Thomas Müller-Höhne 2023-11-13 12:47:12 +09:00
parent 54b8244a18
commit c24b3543ab

View File

@ -165,7 +165,7 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders
if (HitObject.Path.ControlPoints.Count < 3)
{
var lastCp = HitObject.Path.ControlPoints.LastOrDefault();
if (lastCp != cursor)
if (lastCp != cursor && HitObject.Path.ControlPoints.Count == 2)
return false;
bSplineBuilder.Clear();