feat: display save indicator on new files

This commit is contained in:
Stevan Freeborn
2026-02-21 05:31:00 -06:00
parent 5faa42a3e1
commit 7462943c04
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ pub struct File {
impl Default for File {
fn default() -> Self {
File {
needs_saving: false,
needs_saving: true,
content: text_editor::Content::new(),
path: None,
markdown: Vec::new(),