Disabled rotation snapping if grid snapping disabled with shortcut
This commit is contained in:
parent
243b876a97
commit
54debeb61c
@ -272,7 +272,11 @@ function Transformer({
|
||||
onTransform={handleTrasform}
|
||||
onTransformEnd={handleTransformEnd}
|
||||
centeredScaling={true}
|
||||
rotationSnaps={[...Array(24).keys()].map((n) => n * 15)}
|
||||
rotationSnaps={
|
||||
snappingSensitivity === -1
|
||||
? [] // Disabled rotation snapping if grid snapping disabled with shortcut
|
||||
: [...Array(24).keys()].map((n) => n * 15)
|
||||
}
|
||||
rotateAnchorOffset={16}
|
||||
enabledAnchors={["middle-left", "middle-right"]}
|
||||
flipEnabled={false}
|
||||
|
Loading…
Reference in New Issue
Block a user