From 21065959769b26356b8a6d5b14e36a9f602cdc9b Mon Sep 17 00:00:00 2001 From: nmemmert Date: Thu, 20 Aug 2026 10:40:47 -0400 Subject: [PATCH] Show passage text in inline Ink Notes canvas Passes selectedChunkVerses as headerContent to the inline DrawCanvas so highlights overlay the actual scripture text, matching annotate mode. Co-Authored-By: Claude Sonnet 4.6 --- src/pages/StudyPage.jsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/pages/StudyPage.jsx b/src/pages/StudyPage.jsx index 94dfd9f..9868f13 100644 --- a/src/pages/StudyPage.jsx +++ b/src/pages/StudyPage.jsx @@ -533,6 +533,24 @@ export default function StudyPage() { updateChunk(selectedChunk.id, { inkStrokes: s })} + headerContent={ + selectedChunkVerses.length > 0 && ( + <> +
+ Scripture · draw on me + + {formatChunkReference(project, selectedChunkChapterIndex, selectedChunk, '–')} + +
+ {selectedChunkVerses.map((verse) => ( +

+ {verse.chapter}:{verse.number}.{' '} + {verse.text} +

+ ))} + + ) + } /> )}