We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3383a7 commit 7dd926eCopy full SHA for 7dd926e
1 file changed
src-tauri/src/main.rs
@@ -29,6 +29,7 @@ fn open_file(file_path: &PathBuf, window: &Window) -> Result<()> {
29
let commit_list = commands::get_commit_list(file_path);
30
31
window.emit_all("openFile", FileInfo { file_path: file_path.clone(), commit_list })?;
32
+ window.set_title(file_path.file_name().unwrap().to_str().unwrap())?;
33
34
Ok(())
35
}
0 commit comments