|
@@ -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)?;
|