Hello! The below builder fn says it's required for Windows only, but even on macOS this parameter is required to handle drag-n-drop inside HTML, instead of listening for tauri events.
Is the below documentation correct and I miss something? Or should the comment be updated?
Github question: https://github.com/tauri-apps/tauri/issues/11930
/// Disables the drag and drop handler. This is required to use HTML5 drag and drop APIs on the frontend on Windows.
#[must_use]
pub fn disable_drag_drop_handler(mut self) -> Self {
self.webview_builder = self.webview_builder.disable_drag_drop_handler();
self
}
