Change control to toggle rather than always select

This commit is contained in:
Dean Herbert
2019-11-03 18:41:29 +09:00
parent 6bc62385b6
commit 4dbdfcdd3c
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
private void selectPiece(int index)
{
if (inputManager.CurrentState.Keyboard.ControlPressed)
Pieces[index].IsSelected.Value = true;
Pieces[index].IsSelected.Toggle();
else
{
foreach (var piece in Pieces)