From a5a5b5971999e8f55df24787437c7b0528dea97d Mon Sep 17 00:00:00 2001 From: alterwain Date: Tue, 1 Apr 2025 02:23:39 +0300 Subject: [PATCH] Small fix for release builds (disable right-click menu) modified: src/main.rs --- src/main.rs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index ea99c3d..5411f0f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -38,7 +38,7 @@ struct App { impl ApplicationHandler for App { fn resumed(&mut self, event_loop: &ActiveEventLoop) { let window = event_loop.create_window(Window::default_attributes().with_inner_size(LogicalSize::new(900, 600)).with_min_inner_size(LogicalSize::new(900, 600)).with_title("XCraft")).unwrap(); - let webview = WebViewBuilder::new() + let mut webview_builder = WebViewBuilder::new() .with_asynchronous_custom_protocol("xcraft".into(), move |_wid, request, responder| { let uri = request.uri().to_string(); if let Ok(msg) = serde_json::from_slice(request.body()) { @@ -47,9 +47,17 @@ impl ApplicationHandler for App { } let _ = SENDER.lock().unwrap().as_ref().unwrap().send((uri, None, responder)); }) - .with_url("xcraft://custom/ui") - .build(&window) - .unwrap(); + .with_url("xcraft://custom/ui"); + + if !cfg!(debug_assertions) { + webview_builder = webview_builder.with_initialization_script(r#" + document.addEventListener("contextmenu", event => event.preventDefault()); + "#); + } + + let webview = webview_builder + .build(&window) + .unwrap(); self.window = Some(window); self.webview = Some(webview);