You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the WebView struct implements the Drop trait, and a destroy method is called on window when the webview drops(in wry/src/webview/mod.rs).
Is it really necessay because tao::Window has already do the destruction properly on both Linux/mac and Windows platform.
I'm asking this because I wanna build a window with multiple WebViews on it (something like the browser with many tabs), but the Drop trait of WebView hinders me.
The text was updated successfully, but these errors were encountered:
As it stated above, our current api is towards one window with one webview. I am gonna close this as duplicate of #677 as it will be the same fix in the future.
I noticed that the WebView struct implements the Drop trait, and a destroy method is called on
window
when the webview drops(in wry/src/webview/mod.rs).Is it really necessay because tao::Window has already do the destruction properly on both Linux/mac and Windows platform.
I'm asking this because I wanna build a window with multiple
WebView
s on it (something like the browser with many tabs), but the Drop trait of WebView hinders me.The text was updated successfully, but these errors were encountered: