diff options
author | bobzel <zzzman@gmail.com> | 2025-05-09 23:02:18 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-05-09 23:02:18 -0400 |
commit | afc2b90c3eab26a8a3d17bdb711652b68d2528d9 (patch) | |
tree | 58f9edb8a79c9e1e983c9cc4e8c07988e7dd5f1d /src/client/util/DocumentManager.ts | |
parent | 076bdacc5f05dd124823981e49174d276a7aebfd (diff) | |
parent | 299398cb7e21259de3bf7597995840b84e7e0590 (diff) |
Merge branch 'master' into lanyi-branch
Diffstat (limited to 'src/client/util/DocumentManager.ts')
-rw-r--r-- | src/client/util/DocumentManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DocumentManager.ts b/src/client/util/DocumentManager.ts index 3bae2881e..fc8f22cf3 100644 --- a/src/client/util/DocumentManager.ts +++ b/src/client/util/DocumentManager.ts @@ -349,7 +349,7 @@ export class DocumentManager { // bcz: should this delay be an options parameter? setTimeout(() => { Doc.linkFollowHighlight(viewSpec ? [docView.Document, viewSpec] : docView.Document, undefined, options.effect); - const zoomableText = StrCast(targetDoc.text_html, StrCast(targetDoc.ai_firefly_prompt)); + const zoomableText = StrCast(targetDoc.text_html, StrCast(targetDoc.ai_prompt)); if (options.zoomTextSelections && Doc.IsUnhighlightTimerSet() && contextView && zoomableText) { // if the docView is a text anchor, the contextView is the PDF/Web/Text doc contextView.setTextHtmlOverlay(zoomableText, options.effect); |