diff options
author | bobzel <zzzman@gmail.com> | 2021-01-21 13:05:08 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-01-21 13:05:08 -0500 |
commit | 10b759d2bd09af3a8e8a4effbc8fd2312dd873d2 (patch) | |
tree | 892fd61d7585abec796acd94c738613c42c2f78c /src/client/views/nodes/DocumentView.tsx | |
parent | 62d918756afb0e95bae693fe20c28f65d5438c11 (diff) |
moved lock icon outside of doc. tweaked inkingstroke behavior to not drag when selected and to more cleanly support double-click to edit.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 06bf04dd6..6217f473f 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -386,9 +386,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps }, console.log); undoBatch(func)(); } else if (!Doc.IsSystem(this.props.Document)) { - if (this.props.Document.type === DocumentType.INK) { - InkStrokeProperties.Instance && (InkStrokeProperties.Instance._controlBtn = true); - } else if (this.props.Document.type !== DocumentType.LABEL) { + if (this.props.Document.type !== DocumentType.LABEL) { UndoManager.RunInBatch(() => { const fullScreenDoc = Cast(this.props.Document._fullScreenView, Doc, null) || this.props.Document; this.props.addDocTab(fullScreenDoc, "add"); |