diff options
author | bobzel <zzzman@gmail.com> | 2021-02-09 03:03:48 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-02-09 03:03:48 -0500 |
commit | 0f03183b9a2374ed3198d2b9ec8348fa819b11b4 (patch) | |
tree | c0acfb9869f3ea768f2574f3eda1592fa3a30ad4 /src/client/documents/Documents.ts | |
parent | 0e5891eab7f53697b764b7e9da5163db0351a0a2 (diff) |
fixed drawing link lines between everything except textanchor - to - textanchor.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 7d6db06d5..de4a8f43c 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -789,7 +789,7 @@ export namespace Docs { } export function TextanchorDocument(options: DocumentOptions = {}) { - return InstanceFromProto(Prototypes.get(DocumentType.TEXTANCHOR), document, { targetDropAction: "move", ...options }); + return InstanceFromProto(Prototypes.get(DocumentType.TEXTANCHOR), undefined, { targetDropAction: "move", ...options }); } export function FreeformDocument(documents: Array<Doc>, options: DocumentOptions, id?: string) { |