1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 22:35:02 +08:00

Remove usage of case-when (caught me off-gaurd)

This commit is contained in:
Dean Herbert
2020-11-05 13:58:41 +09:00
Unverified
parent ea2fd831ab
commit eed9894d3a
@@ -122,9 +122,14 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders
rightClickPosition = e.MouseDownPosition;
return false; // Allow right click to be handled by context menu
case MouseButton.Left when e.ControlPressed && IsSelected:
placementControlPointIndex = addControlPoint(e.MousePosition);
return true; // Stop input from being handled and modifying the selection
case MouseButton.Left:
if (e.ControlPressed && IsSelected)
{
placementControlPointIndex = addControlPoint(e.MousePosition);
return true; // Stop input from being handled and modifying the selection
}
break;
}
return false;