Fix extractTransform not to interpret text rotate attribute and transform rotation

This commit is contained in:
Mikael Sand
2017-07-16 02:01:50 +03:00
parent 2458a2f262
commit 8e15791107
+1 -1
View File
@@ -161,7 +161,7 @@ export function props2transform(props) {
);
return {
rotation: +props.rotation || +props.rotate || 0,
rotation: +props.rotation || 0,
scaleX: scaleX,
scaleY: scaleY,
originX: originX,