diff options
author | bobzel <zzzman@gmail.com> | 2024-02-06 12:17:13 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-02-06 12:17:13 -0500 |
commit | c6955fe2c0720a8e5f13bad91fdc0e2a6f76f8bd (patch) | |
tree | 7cc102e3f25473af98e9f27778afa1f6a719da38 /src/client/views/nodes/DocumentView.tsx | |
parent | a888150f2e220eff4629551aa03813f92aa0b12f (diff) |
fixed setting text/line properties on linkBox. fixed setting current link on click.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 862dae83a..02f756f16 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -361,7 +361,6 @@ export class DocumentViewInternal extends DocComponent<FieldViewProps & Document this._singleClickFunc = // prettier-ignore clickFunc ?? (() => (sendToBack ? documentView._props.bringToFront?.(this.Document, true) : - this._componentView?.select?.(e.ctrlKey || e.metaKey, e.shiftKey) ?? this._props.select(e.ctrlKey||e.shiftKey, e.metaKey))); const waitFordblclick = this._props.waitForDoubleClickToClick?.() ?? this.Document.waitForDoubleClickToClick; if ((clickFunc && waitFordblclick !== 'never') || waitFordblclick === 'always') { |