From c1e872a5e82e75a510a57ce017003bc49da6a6cc Mon Sep 17 00:00:00 2001
From: Eric Rosenbaum <eric.rosenbaum@gmail.com>
Date: Fri, 14 Feb 2020 11:46:00 -0500
Subject: [PATCH] correct rotation center for costumes

---
 src/containers/costume-library.jsx | 6 ++----
 src/containers/costume-tab.jsx     | 6 ++----
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/src/containers/costume-library.jsx b/src/containers/costume-library.jsx
index 2686c8408..83c24b191 100644
--- a/src/containers/costume-library.jsx
+++ b/src/containers/costume-library.jsx
@@ -25,12 +25,10 @@ class CostumeLibrary extends React.PureComponent {
         ]);
     }
     handleItemSelected (item) {
-        const rotationCenterX = item.dataFormat === 'svg' ? item.rotationCenterX : item.rotationCenterX / 2;
-        const rotationCenterY = item.dataFormat === 'svg' ? item.rotationCenterY : item.rotationCenterY / 2;
         const vmCostume = {
             name: item.name,
-            rotationCenterX,
-            rotationCenterY,
+            rotationCenterX: item.rotationCenterX,
+            rotationCenterY: item.rotationCenterY,
             bitmapResolution: item.bitmapResolution,
             skinId: null
         };
diff --git a/src/containers/costume-tab.jsx b/src/containers/costume-tab.jsx
index 5f99f8f23..475ad2fc4 100644
--- a/src/containers/costume-tab.jsx
+++ b/src/containers/costume-tab.jsx
@@ -179,13 +179,11 @@ class CostumeTab extends React.Component {
     }
     handleSurpriseCostume () {
         const item = costumeLibraryContent[Math.floor(Math.random() * costumeLibraryContent.length)];
-        const rotationCenterX = item.dataFormat === 'svg' ? item.rotationCenterX : item.rotationCenterX / 2;
-        const rotationCenterY = item.dataFormat === 'svg' ? item.rotationCenterY : item.rotationCenterY / 2;
         const vmCostume = {
             name: item.name,
             md5: item.md5ext,
-            rotationCenterX: rotationCenterX,
-            rotationCenterY: rotationCenterY,
+            rotationCenterX: item.rotationCenterX,
+            rotationCenterY: item.rotationCenterY,
             bitmapResolution: item.bitmapResolution,
             skinId: null
         };
-- 
GitLab