Ver código fonte

:art: https://github.com/siyuan-note/siyuan/issues/12857

Vanessa 8 meses atrás
pai
commit
20e8b81b8f
1 arquivos alterados com 2 adições e 3 exclusões
  1. 2 3
      app/src/protyle/util/editorCommonEvent.ts

+ 2 - 3
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 = "";