mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 17:52:56 +08:00
Add back LeftMouse button check
This commit is contained in:
parent
a8cf6a6854
commit
f85ff40a6b
@ -112,7 +112,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
// even if a selection didn't occur, a drag event may still move the selection.
|
||||
bool movementPossible = prepareSelectionMovement();
|
||||
|
||||
return selectionPerformed || movementPossible;
|
||||
return selectionPerformed || (e.Button == MouseButton.Left && movementPossible);
|
||||
}
|
||||
|
||||
protected SelectionBlueprint<T> ClickedBlueprint { get; private set; }
|
||||
|
Loading…
Reference in New Issue
Block a user