diff --git a/src/element/dragElements.ts b/src/element/dragElements.ts index e4583e4a..56296e46 100644 --- a/src/element/dragElements.ts +++ b/src/element/dragElements.ts @@ -105,7 +105,7 @@ export const dragNewElement = ( true */ widthAspectRatio?: number | null, ) => { - if (shouldMaintainAspectRatio) { + if (shouldMaintainAspectRatio && draggingElement.type !== "selection") { if (widthAspectRatio) { height = width / widthAspectRatio; } else {