1
0
Эх сурвалжийг харах

Merge pull request #939 from Demonthos/disable-browser-shortcuts

Disable browser shortcut keys on windows
Jon Kelley 2 жил өмнө
parent
commit
89efa60389

+ 11 - 0
packages/desktop/src/webview.rs

@@ -57,6 +57,17 @@ pub fn build(
         })
         .with_web_context(&mut web_context);
 
+    #[cfg(windows)]
+    {
+        // Windows has a platform specific settings to disable the browser shortcut keys
+        use wry::webview::WebViewBuilderExtWindows;
+        webview = webview.with_browser_accelerator_keys(false);
+    }
+
+    // These are commented out because wry is currently broken in wry
+    // let mut web_context = WebContext::new(cfg.data_dir.clone());
+    // .with_web_context(&mut web_context);
+
     for (name, handler) in cfg.protocols.drain(..) {
         webview = webview.with_custom_protocol(name, handler)
     }