fix: disable Tauri file drop handler — unblocks HTML5 drag-and-drop
All checks were successful
Build & Sign Wraith / Build Windows + Sign (push) Successful in 3m4s

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) <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell 2026-03-24 21:48:46 -04:00
parent 5fc8951334
commit 8df59683d2

View File

@ -17,7 +17,8 @@
"minWidth": 800, "minWidth": 800,
"minHeight": 600, "minHeight": 600,
"decorations": true, "decorations": true,
"resizable": true "resizable": true,
"dragDropEnabled": false
} }
], ],
"security": { "security": {