Skip to content

Commit

Permalink
fix: lint macos target error
Browse files Browse the repository at this point in the history
  • Loading branch information
marekvospel committed Jan 22, 2023
1 parent c76b431 commit 5acd1d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-tauri/src/utils/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ impl<'a> WindowWithConfig<'a> for WindowBuilder<'a, Wry> {

#[cfg(target_os = "macos")]
{
builder
.title_bar_style(config.title_bar_style)
builder = builder
.title_bar_style(config.title_bar_style.clone())
.hidden_title(config.hidden_title);
}

Expand Down

0 comments on commit 5acd1d4

Please sign in to comment.