|
|
|
@ -10048,7 +10048,9 @@ class App extends React.Component<AppProps, AppState> {
|
|
|
|
|
// Frames cannot be rotated.
|
|
|
|
|
(selectedFrames.length > 0 && transformHandleType === "rotation") ||
|
|
|
|
|
// Elbow arrows cannot be transformed (resized or rotated).
|
|
|
|
|
(selectedElements.length === 1 && isElbowArrow(selectedElements[0]))
|
|
|
|
|
(selectedElements.length === 1 && isElbowArrow(selectedElements[0])) ||
|
|
|
|
|
// Do not resize when in crop mode
|
|
|
|
|
this.state.croppingElement
|
|
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|