diff options
| author | bobzel <zzzman@gmail.com> | 2023-03-17 17:03:32 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-03-17 17:03:32 -0400 |
| commit | c885ae59ea378648dcc70b6f17dac2d3999c60b1 (patch) | |
| tree | 109b7d59704ab9ca3eab4552e7398122772f5503 /src/client/views/nodes/LinkAnchorBox.tsx | |
| parent | 8aeab8c3f25c556e39f3e9e58f9c321e79459df8 (diff) | |
fixed clicking and dragging stackedTimeline anchors. updated followLink parameters
Diffstat (limited to 'src/client/views/nodes/LinkAnchorBox.tsx')
| -rw-r--r-- | src/client/views/nodes/LinkAnchorBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/LinkAnchorBox.tsx b/src/client/views/nodes/LinkAnchorBox.tsx index 1b37dc7ab..e12548f18 100644 --- a/src/client/views/nodes/LinkAnchorBox.tsx +++ b/src/client/views/nodes/LinkAnchorBox.tsx @@ -39,7 +39,7 @@ export class LinkAnchorBox extends ViewBoxBaseComponent<FieldViewProps>() { this.onPointerMove, emptyFunction, (e, doubleTap) => { - if (doubleTap) LinkFollower.FollowLink(this.rootDoc, anchorContainerDoc, this.props, false); + if (doubleTap) LinkFollower.FollowLink(this.rootDoc, anchorContainerDoc, false); else this.props.select(false); }, false |
