Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
adriankumpf committed Mar 19, 2024
1 parent 1a55669 commit 2383a15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 2383a15

Please sign in to comment.