Fix editor quick delete being triggerable from left mouse button

Closes https://github.com/ppy/osu/issues/10629.
This commit is contained in:
Dean Herbert
2020-11-10 16:54:33 +09:00
parent c8917d1236
commit a012105dac
2 changed files with 6 additions and 6 deletions

View File

@ -303,7 +303,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
{
if (blueprint.IsHovered)
{
selectedPerformed &= SelectionHandler.HandleSelectionRequested(blueprint, e.CurrentState);
selectedPerformed &= SelectionHandler.HandleSelectionRequested(blueprint, e);
clickSelectionBegan = true;
break;
}