This commit is contained in:
Christoph Grabo 2022-02-13 19:50:29 +01:00
parent ee2b869e99
commit c40d225d7d
No known key found for this signature in database
GPG key ID: 1FE689DF1A1AEE6C

View file

@ -12,9 +12,9 @@ use wry::{
pub(crate) type DynEventHandlerFn = dyn Fn(&mut EventLoop<()>, &mut WebView); pub(crate) type DynEventHandlerFn = dyn Fn(&mut EventLoop<()>, &mut WebView);
pub struct DesktopConfig { pub struct DesktopConfig {
pub window: WindowBuilder, pub(crate) window: WindowBuilder,
pub file_drop_handler: Option<Box<dyn Fn(&Window, FileDropEvent) -> bool>>, pub(crate) file_drop_handler: Option<Box<dyn Fn(&Window, FileDropEvent) -> bool>>,
pub protocols: Vec<WryProtocol>, pub(crate) protocols: Vec<WryProtocol>,
pub(crate) pre_rendered: Option<String>, pub(crate) pre_rendered: Option<String>,
pub(crate) event_handler: Option<Box<DynEventHandlerFn>>, pub(crate) event_handler: Option<Box<DynEventHandlerFn>>,
} }