diff options
author | bobzel <zzzman@gmail.com> | 2020-12-14 02:01:57 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-12-14 02:01:57 -0500 |
commit | 37d9d2cad93a08518cec6c95c8bc941dd5f5ddaa (patch) | |
tree | 25b4fee39aeb543333b87b2d03f7fb4645bad1c2 /src/client/views/linking/LinkMenuItem.tsx | |
parent | 257b259717486b984b90b75a8561b7b5c76a6964 (diff) |
more changes to ContentScaling to get web/video/image boxes to work with annotation/DocDecorations in contentfitting and freeform views.
Diffstat (limited to 'src/client/views/linking/LinkMenuItem.tsx')
-rw-r--r-- | src/client/views/linking/LinkMenuItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/linking/LinkMenuItem.tsx b/src/client/views/linking/LinkMenuItem.tsx index b31c1fcc1..9ecf3d0fb 100644 --- a/src/client/views/linking/LinkMenuItem.tsx +++ b/src/client/views/linking/LinkMenuItem.tsx @@ -110,7 +110,7 @@ export class LinkMenuItem extends React.Component<LinkMenuItemProps> { onLinkButtonUp = (e: PointerEvent): void => { document.removeEventListener("pointermove", this.onLinkButtonMoved); document.removeEventListener("pointerup", this.onLinkButtonUp); - DocumentView.followLinkClick(this.props.linkDoc, this.props.sourceDoc, this.props.docView.props, false, false); + DocumentView.followLinkClick(this.props.linkDoc, this.props.sourceDoc, this.props.docView.props, false); e.stopPropagation(); } |