fix builds for windows

This commit is contained in:
Jonathan Kelley 2024-01-06 00:36:31 -08:00
parent d07808634a
commit d7c6aa4577
No known key found for this signature in database
GPG key ID: 1FBB50F7EB0A08BE
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ mod impl_ {
#[allow(unused)] #[allow(unused)]
pub fn build_menu_bar(menu: Menu, window: &Window) { pub fn build_menu_bar(menu: Menu, window: &Window) {
#[cfg(target_os = "windows")] #[cfg(target_os = "windows")]
menu.init_for_hwnd(window); menu.init_for_hwnd(window.raw_display_handle_rwh_05());
// #[cfg(target_os = "linux")] // #[cfg(target_os = "linux")]
// { // {

View file

@ -106,7 +106,7 @@ impl WebviewInstance {
#[cfg(windows)] #[cfg(windows)]
{ {
// Windows has a platform specific settings to disable the browser shortcut keys // Windows has a platform specific settings to disable the browser shortcut keys
use wry::webview::WebViewBuilderExtWindows; use wry::WebViewBuilderExtWindows;
webview = webview.with_browser_accelerator_keys(false); webview = webview.with_browser_accelerator_keys(false);
} }