diff options
author | yunahi <60233430+yunahi@users.noreply.github.com> | 2020-07-29 00:48:20 +0900 |
---|---|---|
committer | yunahi <60233430+yunahi@users.noreply.github.com> | 2020-07-29 00:48:20 +0900 |
commit | ef235dfa63709656af35fa3deaf53529abd3ee4c (patch) | |
tree | 807d64867fd7fb2f0ec804bc94da9d501963e59c /src/client/views/DocumentDecorations.tsx | |
parent | 14bc3337ce2c2ca87f4b11765414a7ee1bb12bba (diff) |
moved inkmenu to collectionMenu
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
-rw-r--r-- | src/client/views/DocumentDecorations.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index 3d258430e..c5e0a3303 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -526,7 +526,6 @@ export class DocumentDecorations extends React.Component<{}, { value: string }> SelectionManager.SelectedDocuments().forEach(action((element: DocumentView, index) => { const doc = Document(element.rootDoc); if (doc.type === DocumentType.INK && doc.x && doc.y && doc._height && doc._width) { - console.log(doc.x, doc.y, doc._height, doc._width); const ink = Cast(doc.data, InkField)?.inkData; if (ink) { const newPoints: { X: number, Y: number }[] = []; |