Skip to content

Commit

Permalink
move to transparent to macos only
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Jun 19, 2023
1 parent c47d5f8 commit 94fb71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rio/src/screen/window/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ pub fn create_window_builder(title: &str) -> winit::window::WindowBuilder {
height: DEFAULT_MINIMUM_WINDOW_HEIGHT,
})
.with_resizable(true)
.with_transparent(true)
.with_decorations(true)
.with_window_icon(Some(icon));

Expand All @@ -39,6 +38,7 @@ pub fn create_window_builder(title: &str) -> winit::window::WindowBuilder {
window_builder = window_builder
.with_title_hidden(true)
.with_titlebar_transparent(true)
.with_transparent(true)
.with_fullsize_content_view(true);
}

Expand Down

0 comments on commit 94fb71f

Please sign in to comment.