Skip to content

Commit

Permalink
fix macos compilation and bump to 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
coderedart committed Dec 2, 2023
1 parent 9b0b5eb commit ac7770b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui_overlay"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
license = "MIT"
description = "Egui integration to easily create Desktop Overlays"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub fn start<T: EguiOverlay + 'static>(user_data: T) {
#[cfg(not(target_os = "macos"))]
opengl_window: Some(true),
#[cfg(target_os = "macos")]
opengl_window: Some(true),
opengl_window: Some(false),
transparent_window: Some(true),
..Default::default()
});
Expand All @@ -47,7 +47,7 @@ pub fn start<T: EguiOverlay + 'static>(user_data: T) {
egui_render_wgpu::WgpuConfig {
..Default::default()
},
Some(&glfw.window),
Some(&glfw_backend.window),
latest_size,
);
let overlap_app = OverlayApp {
Expand Down

0 comments on commit ac7770b

Please sign in to comment.