From fffb659e07b453e829bd20f141fa06a059d5a630 Mon Sep 17 00:00:00 2001 From: d0rianb Date: Wed, 16 Mar 2022 17:39:01 +0100 Subject: [PATCH] remove tokens.yaml --- resources/tokens.yaml | 1 - src/main.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 resources/tokens.yaml diff --git a/resources/tokens.yaml b/resources/tokens.yaml deleted file mode 100644 index 5c63517..0000000 --- a/resources/tokens.yaml +++ /dev/null @@ -1 +0,0 @@ -OAI: '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' \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index ace178f..4ddfe9a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -112,7 +112,7 @@ impl WindowHandler for EditorWindowHandler { }, EditorEvent::MenuItemUnselected(_item, key) => self.editor.add_char(key), EditorEvent::LoadFile(path) => set_app_title(helper, &path), - EditorEvent::SetDirty(path, is_dirty) => set_app_title(helper, &if !is_dirty { path } else { path + " *" }), + EditorEvent::SetDirty(path, is_dirty) => set_app_title(helper, &if !is_dirty { path } else { path + " °" }), EditorEvent::OAIResponse(menu_id, choices) => self.editor.get_menu(menu_id).async_callback(choices), _ => {} }