From 2383a15adce14f706ff0988ec11cafe945961749 Mon Sep 17 00:00:00 2001 From: Adrian Kumpf <8999358+adriankumpf@users.noreply.github.com> Date: Tue, 19 Mar 2024 16:36:02 +0100 Subject: [PATCH] Format code --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 59fe258..ff13265 100644 --- a/src/main.rs +++ b/src/main.rs @@ -121,10 +121,10 @@ fn main() -> anyhow::Result<()> { let proxy = event_proxy.clone(); - #[cfg(any( target_os = "windows", target_os = "macos"))] + #[cfg(any(target_os = "windows", target_os = "macos"))] let builder = WebViewBuilder::new(&window); - #[cfg(not(any( target_os = "windows", target_os = "macos")))] + #[cfg(not(any(target_os = "windows", target_os = "macos")))] let builder = { use wry::WebViewBuilderExtUnix; let vbox = window.default_vbox().unwrap();