1
0
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:
Derrick Timmermans 2021-07-21 11:47:21 +02:00
parent a8cf6a6854
commit f85ff40a6b
No known key found for this signature in database
GPG Key ID: 8681B60806EF4A17

View File

@ -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; }