From 6a502de3df17ad2a69c9811c9786f372b294d438 Mon Sep 17 00:00:00 2001 From: Alex Hernandez Date: Thu, 19 Mar 2026 21:54:06 +1000 Subject: [PATCH] :lipstick: tooltip hovers over cursor --- src/renderer/components/Editor/MarkdownEditor.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/components/Editor/MarkdownEditor.tsx b/src/renderer/components/Editor/MarkdownEditor.tsx index 540d9b6..03964d9 100644 --- a/src/renderer/components/Editor/MarkdownEditor.tsx +++ b/src/renderer/components/Editor/MarkdownEditor.tsx @@ -209,7 +209,7 @@ const annotationHoverTooltip = hoverTooltip( // User comments: show static tooltip with the comment text — no AI streaming if (ann.type === 'user_comment') { return { - pos: ann.from, + pos, end: ann.to, above: true, create() { @@ -244,7 +244,7 @@ const annotationHoverTooltip = hoverTooltip( } return { - pos: ann.from, + pos, end: ann.to, above: true, create() {