From 90f5e6b0816c8713563a52788657f0146b809846 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sun, 6 Jul 2025 16:19:28 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/15222 --- app/src/boot/globalEvent/mousemove.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/boot/globalEvent/mousemove.ts b/app/src/boot/globalEvent/mousemove.ts index 177a59ca5..18464bfa2 100644 --- a/app/src/boot/globalEvent/mousemove.ts +++ b/app/src/boot/globalEvent/mousemove.ts @@ -151,7 +151,7 @@ export const windowMouseMove = (event: MouseEvent, mouseIsEnter: boolean) => { if (eventPath0 && eventPath0.nodeType !== 3 && ( eventPath0.classList.contains("li") || eventPath0.classList.contains("list") || - eventPath0.classList.contains("protyle-action") + (eventPath0.classList.contains("protyle-action") && eventPath0.getAttribute("data-type") === "NodeListItem") )) { // 光标在列表下部应显示右侧的元素,而不是列表本身 const targetBlockElement = getRightBlock(eventPath0, eventPath0.getBoundingClientRect().left + 1, event.clientY);