Skip to content

Commit

Permalink
remove tokens.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
d0rianb committed Mar 16, 2022
1 parent e1218fc commit fffb659
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion resources/tokens.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl WindowHandler<EditorEvent> 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),
_ => {}
}
Expand Down

0 comments on commit fffb659

Please sign in to comment.