浏览代码

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

Disable browser shortcut keys on windows
Jon Kelley 2 年之前
父节点
当前提交
89efa60389
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      packages/desktop/src/webview.rs

+ 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)
     }