mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 04:02:57 +08:00
fix unnecessary newline
This commit is contained in:
parent
00f15d19f9
commit
788033e1b8
@ -460,11 +460,9 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
|
||||
// Movement is tracked from the blueprint of the earliest item, since it only makes sense to distance snap from that item
|
||||
movementBlueprints = SortForMovement(SelectionHandler.SelectedBlueprints).ToArray();
|
||||
movementBlueprintOriginalPositions = movementBlueprints.Select(m => m.ScreenSpaceSelectionPoint)
|
||||
.ToArray();
|
||||
movementBlueprintOriginalPositions = movementBlueprints.Select(m => m.ScreenSpaceSelectionPoint).ToArray();
|
||||
movementBlueprintOriginalEndPositions = movementBlueprints.Where(m => m.ScreenSpaceSelectionPoint != m.ScreenSpaceEndPoint)
|
||||
.Select(m => m.ScreenSpaceEndPoint)
|
||||
.ToArray();
|
||||
.Select(m => m.ScreenSpaceEndPoint).ToArray();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user