feat: display indicator when need saving

This commit is contained in:
Stevan Freeborn
2026-02-21 05:08:48 -06:00
parent 268325adfa
commit 5faa42a3e1
4 changed files with 28 additions and 2 deletions
+1
View File
@@ -62,6 +62,7 @@ pub fn saved_file(state: &mut State, result: Result<PathBuf, String>) -> Task<Me
match result {
Ok(path) => {
state.set_active_file_path(path);
state.set_active_file_save_status(false);
}
Err(_error) => {}
};