Skip to content

Commit

Permalink
fix: #763 add title for linux/windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jeasonnow committed Aug 5, 2024
1 parent a1c1d66 commit e761202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/app/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub fn build_window(app: &mut App, config: PakeConfig, _data_dir: PathBuf) -> Wi

#[cfg(not(target_os = "macos"))]
{
window_builder = window_builder.data_directory(_data_dir);
window_builder = window_builder.data_directory(_data_dir).set_title(app.package_info().name);
}

window_builder.build().expect("Failed to build window")
Expand Down

0 comments on commit e761202

Please sign in to comment.