diff options
author | yunahi <60233430+yunahi@users.noreply.github.com> | 2020-07-28 01:28:22 +0900 |
---|---|---|
committer | yunahi <60233430+yunahi@users.noreply.github.com> | 2020-07-28 01:28:22 +0900 |
commit | f3a331573be09115f9a92b8e927081f8f743c478 (patch) | |
tree | 9e709dfda0d641864f321a07e749aa61bd1b1529 /src | |
parent | 65d3c9672fc3cf0dc981588f220dad269beb4aeb (diff) |
delete console.log
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/collectionFreeForm/FormatShapePane.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/FormatShapePane.tsx b/src/client/views/collections/collectionFreeForm/FormatShapePane.tsx index adb71c6aa..a2600a2b3 100644 --- a/src/client/views/collections/collectionFreeForm/FormatShapePane.tsx +++ b/src/client/views/collections/collectionFreeForm/FormatShapePane.tsx @@ -256,10 +256,10 @@ export default class FormatShapePane extends AntimodeMenu { doc._height = (bottom2 - top2); doc._width = (right2 - left2); //if points move out of bounds - console.log(doc.x); + doc.x = oldx - (left - left2); doc.y = oldy - (top - top2); - console.log(doc.x); + } } } |