diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-05-16 22:56:19 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-05-16 22:56:19 -0400 |
commit | 6e65b1e32eb972358d9c8dbd7f8d984d3baefc4b (patch) | |
tree | bdabcfc70b90e943e3aaf9ab8b93a916cabd007d /src/client/views/nodes/LinkBox.tsx | |
parent | 0c019112791138304eaaeea768d254981322ec55 (diff) |
fixed links so that you can adjust the pan location of a collection when its a link endoint
Diffstat (limited to 'src/client/views/nodes/LinkBox.tsx')
-rw-r--r-- | src/client/views/nodes/LinkBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/LinkBox.tsx b/src/client/views/nodes/LinkBox.tsx index 611cb66b6..68b692aad 100644 --- a/src/client/views/nodes/LinkBox.tsx +++ b/src/client/views/nodes/LinkBox.tsx @@ -31,7 +31,7 @@ export class LinkBox extends React.Component<Props> { @undoBatch onViewButtonPressed = async (e: React.PointerEvent): Promise<void> => { e.stopPropagation(); - DocumentManager.Instance.jumpToDocument(this.props.pairedDoc); + DocumentManager.Instance.jumpToDocument(this.props.pairedDoc, e.altKey); } onEditButtonPressed = (e: React.PointerEvent): void => { |