diff options
author | bobzel <zzzman@gmail.com> | 2023-05-08 11:34:29 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-05-08 11:34:29 -0400 |
commit | 2255f2ffd4d9c5818d8d26f1814b315ad914eaa9 (patch) | |
tree | e0c9611f6f8262e9076b3e046d38036754291285 /src/client/views/nodes/DocumentView.tsx | |
parent | 37f282f075f521fe9ece21e151a51ffd47016782 (diff) |
fixed dragging inkMask strokes. fixed background color/fill for strokes. fixed send to back. changed #tags to be a list
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 3bdd2bf6e..f1f5f7e10 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -870,7 +870,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps contentPointerEvents = () => (!this.disableClickScriptFunc && this.onClickHandler ? 'none' : this.pointerEvents); @computed get contents() { TraceMobx(); - const isInk = StrCast(this.layoutDoc.layout).includes(InkingStroke.name); + const isInk = StrCast(this.layoutDoc.layout).includes(InkingStroke.name) && !this.props.LayoutTemplateString; return ( <div className="documentView-contentsView" |