diff --git a/app/src/protyle/util/editorCommonEvent.ts b/app/src/protyle/util/editorCommonEvent.ts index 6605877f2f6..6d2689e8c16 100644 --- a/app/src/protyle/util/editorCommonEvent.ts +++ b/app/src/protyle/util/editorCommonEvent.ts @@ -1208,9 +1208,8 @@ export const dropEvent = (protyle: IProtyle, editorElement: HTMLElement) => { }); } // 设置了的话 drop 就无法监听 shift/control event.dataTransfer.dropEffect = "move"; - if (event.dataTransfer.types.includes("Files") && event.target.classList.contains("protyle-wysiwyg")) { - // 文档底部拖拽文件需 preventDefault,否则无法触发 drop 事件 https://github.com/siyuan-note/siyuan/issues/2665 - event.preventDefault(); + if (event.dataTransfer.types.includes("Files")) { + // 使用 event.preventDefault(); 会导致无光标 https://github.com/siyuan-note/siyuan/issues/12857 return; } let gutterType = "";