aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/LinkDocPreview.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-04-27 13:46:33 -0400
committerbobzel <zzzman@gmail.com>2022-04-27 13:46:33 -0400
commit267d4d7c3f2a85f0df292dea9667293eee3358c5 (patch)
tree1ac02756e5cda59402ab922eaebdccf6e2454335 /src/client/views/nodes/LinkDocPreview.tsx
parent5ceb2a52cc4a55042ee7652dd437be0ddfc5172e (diff)
fixed links to ink being computed correctly on the inkStroke's links field. fixed interacting with iconified ink. fixed cycling through links on linkDocPreivew to not deselect
Diffstat (limited to 'src/client/views/nodes/LinkDocPreview.tsx')
-rw-r--r--src/client/views/nodes/LinkDocPreview.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/LinkDocPreview.tsx b/src/client/views/nodes/LinkDocPreview.tsx
index 55f6d6059..28915674d 100644
--- a/src/client/views/nodes/LinkDocPreview.tsx
+++ b/src/client/views/nodes/LinkDocPreview.tsx
@@ -110,7 +110,7 @@ export class LinkDocPreview extends React.Component<LinkDocPreviewProps> {
setupMoveUpEvents(this, e, returnFalse, emptyFunction, action(() => {
this._linkDoc = undefined;
this._hrefInd = (this._hrefInd + 1) % (this.props.hrefs?.length || 1);
- }));
+ }), true);
}
followLink = (e: React.PointerEvent) => {