fix(core): fileDropEnabled option is not working when creating a new WebviewWindow (#4146)

This commit is contained in:
TomScavo
2022-05-18 00:38:40 +08:00
committed by GitHub
parent 8e1daad153
commit 706fcbd39c
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"tauri": patch
---
Fixes `fileDropEnabled` option not working.

View File

@@ -204,8 +204,13 @@ impl Cmd {
) -> super::Result<()> {
let label = options.label.clone();
let url = options.url.clone();
let file_drop_enabled = options.file_drop_enabled;
let mut builder = crate::window::Window::builder(&context.window, label, url);
if !file_drop_enabled {
builder = builder.disable_file_drop_handler();
}
builder.window_builder =
<<R::Dispatcher as Dispatch<crate::EventLoopMessage>>::WindowBuilder>::with_config(*options);
builder.build().map_err(crate::error::into_anyhow)?;