From 8df59683d2ba4a91f6e5b45ddb6053948c33eef2 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Tue, 24 Mar 2026 21:48:46 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20disable=20Tauri=20file=20drop=20handler?= =?UTF-8?q?=20=E2=80=94=20unblocks=20HTML5=20drag-and-drop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tauri's built-in dragDropEnabled intercepts all drag events in the WebView for native file drop handling. This prevents HTML5 drag-and-drop between elements within the page. Disabled so tab reordering works. 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 ec52d73..5a130bd 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -17,7 +17,8 @@ "minWidth": 800, "minHeight": 600, "decorations": true, - "resizable": true + "resizable": true, + "dragDropEnabled": false } ], "security": {