diff --git a/osu.Game/Screens/Edit/Compose/Components/SelectionBox.cs b/osu.Game/Screens/Edit/Compose/Components/SelectionBox.cs index 03838182a6..40eb1e66c7 100644 --- a/osu.Game/Screens/Edit/Compose/Components/SelectionBox.cs +++ b/osu.Game/Screens/Edit/Compose/Components/SelectionBox.cs @@ -286,10 +286,13 @@ namespace osu.Game.Screens.Edit.Compose.Components dragHandles.ClearRotationHandles(); - addRotateHandle(Anchor.TopLeft); - addRotateHandle(Anchor.TopRight); - addRotateHandle(Anchor.BottomLeft); - addRotateHandle(Anchor.BottomRight); + if (canRotate.Value) + { + addRotateHandle(Anchor.TopLeft); + addRotateHandle(Anchor.TopRight); + addRotateHandle(Anchor.BottomLeft); + addRotateHandle(Anchor.BottomRight); + } } private void addRotateHandle(Anchor anchor)