aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm
diff options
context:
space:
mode:
authoryunahi <60233430+yunahi@users.noreply.github.com>2020-08-10 22:49:50 +0900
committeryunahi <60233430+yunahi@users.noreply.github.com>2020-08-10 22:49:50 +0900
commit01ebdb0db657f4c9de7959d2810548993a26e675 (patch)
tree7f6146cf0818984546fd319bb375870ccd260bf9 /src/client/views/collections/collectionFreeForm
parentd4ca38801b19e38b49b087be3e510cc0fca33eb8 (diff)
parentd3c49ce7b1921dec4c27f425b2af788e3d6385e9 (diff)
Merge branch 'ink_edits' of https://github.com/browngraphicslab/Dash-Web into ink_edits
:wq
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
-rw-r--r--src/client/views/collections/collectionFreeForm/FormatShapePane.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/FormatShapePane.tsx b/src/client/views/collections/collectionFreeForm/FormatShapePane.tsx
index e805f9282..c53e4de0f 100644
--- a/src/client/views/collections/collectionFreeForm/FormatShapePane.tsx
+++ b/src/client/views/collections/collectionFreeForm/FormatShapePane.tsx
@@ -290,7 +290,6 @@ export default class FormatShapePane extends AntimodeMenu {
@undoBatch
@action
control = (xDiff: number, yDiff: number, controlNum: number) => {
- // console.log(controlNum, ink.length);
this.selectedInk?.forEach(action(inkView => {
if (this.selectedInk?.length === 1) {
const doc = Document(inkView.rootDoc);
@@ -298,7 +297,6 @@ export default class FormatShapePane extends AntimodeMenu {
const ink = Cast(doc.data, InkField)?.inkData;
if (ink) {
-
const newPoints: { X: number, Y: number }[] = [];
const order = controlNum % 4;
for (var i = 0; i < ink.length; i++) {