Skip to content

Commit

Permalink
Remove unnecessary code from winit
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Feb 7, 2025
1 parent 3dc4f8d commit 0a43623
Show file tree
Hide file tree
Showing 37 changed files with 235 additions and 7,476 deletions.
4 changes: 2 additions & 2 deletions azul-desktop/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ impl App {
}

#[cfg(target_os = "macos")] {
crate::shell::cocoa::get_monitors(self)
crate::shell::appkit::get_monitors(self)
}
}

Expand All @@ -175,7 +175,7 @@ impl App {
let err = crate::shell::x11::run(self, root_window);

#[cfg(target_os = "macos")]
let err = crate::shell::cocoa::run(root_window);
let err = crate::shell::appkit::run(root_window);

if let Err(e) = err {
crate::dialogs::msg_box(&format!("{:?}", e));
Expand Down
Loading

0 comments on commit 0a43623

Please sign in to comment.