From f3c97bb7d9a09ca6caf8367c6d6edddeb1dbec3e Mon Sep 17 00:00:00 2001 From: lucaronin Date: Tue, 31 Mar 2026 10:51:32 +0200 Subject: [PATCH] fix: disable Tauri native drag-drop to restore BlockNote block dragging Tauri's default dragDropEnabled=true intercepts HTML5 DnD events at the webview level, preventing BlockNote's block handle drag-to-reorder from receiving dragstart/dragover/drop events. Setting dragDropEnabled=false lets all drag events flow through standard HTML5 DnD, which BlockNote expects. Co-Authored-By: Claude Opus 4.6 (1M context) --- src-tauri/tauri.conf.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 4e5f4a1c..0a4a19fb 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -22,7 +22,8 @@ "fullscreen": false, "titleBarStyle": "Overlay", "hiddenTitle": true, - "backgroundColor": "#F7F6F3" + "backgroundColor": "#F7F6F3", + "dragDropEnabled": false } ], "security": {