mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 04:33:06 +00:00
fix clippy lint in desktop
This commit is contained in:
parent
4a9ebe78d7
commit
6653d48614
1 changed files with 2 additions and 0 deletions
|
@ -307,6 +307,8 @@ struct WebviewHandler {
|
|||
dom: VirtualDom,
|
||||
webview: Rc<wry::webview::WebView>,
|
||||
waker: Waker,
|
||||
// This is nessisary because of a bug in wry. Wry assumes the webcontext is alive for the lifetime of the webview. We need to keep the webcontext alive, otherwise the webview will crash
|
||||
#[allow(dead_code)]
|
||||
web_context: WebContext,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue