From e3ae991bb3755180c193687cf44eb5f599b9f435 Mon Sep 17 00:00:00 2001 From: Martynas Bagdonas Date: Tue, 17 Dec 2024 18:29:48 +0200 Subject: [PATCH] Render ink annotation images when previewing attachment annotations --- chrome/content/zotero/elements/attachmentAnnotationsBox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/elements/attachmentAnnotationsBox.js b/chrome/content/zotero/elements/attachmentAnnotationsBox.js index 27af270883..7effc87911 100644 --- a/chrome/content/zotero/elements/attachmentAnnotationsBox.js +++ b/chrome/content/zotero/elements/attachmentAnnotationsBox.js @@ -106,7 +106,7 @@ let imageAnnotationRendered = false; for (let annotation of this._annotationItems) { if (!imageAnnotationRendered - && annotation.annotationType === 'image' + && ['image', 'ink'].includes(annotation.annotationType) && !await Zotero.Annotations.hasCacheImage(annotation)) { try { await Zotero.PDFWorker.renderAttachmentAnnotations(annotation.parentID);