1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 13:32:54 +08:00

Fix right click deselecting clicked path piece with control held

This commit is contained in:
Bartłomiej Dach 2021-12-22 08:55:26 +01:00
parent 9973db3981
commit e22745397d
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -161,6 +161,8 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
case MouseButton.Right:
if (!IsSelected.Value)
RequestSelection.Invoke(this, e);
keepSelection = true;
return false; // Allow context menu to show
}