Add "Add Folder to Project" command to application menu

This commit is contained in:
Max Brunsfeld 2022-05-20 16:19:43 -07:00
parent e72f5cea22
commit 8ed33cadeb
2 changed files with 27 additions and 0 deletions

View file

@ -42,6 +42,10 @@ pub fn menus() -> Vec<Menu<'static>> {
name: "Open…",
action: Box::new(workspace::Open),
},
MenuItem::Action {
name: "Add Folder to Project…",
action: Box::new(workspace::AddFolderToProject),
},
MenuItem::Action {
name: "Save",
action: Box::new(workspace::Save),