diff --git a/crates/app/src/view.rs b/crates/app/src/view.rs index 51d7c34e..1d15e0f8 100644 --- a/crates/app/src/view.rs +++ b/crates/app/src/view.rs @@ -881,7 +881,9 @@ impl Content for Modal { impl Modal { fn view_menu (&self) -> impl Content { - "menu" + let options = ||["Projects", "Settings", "Help", "Quit"].iter(); + let option = |a,i|Tui::fg(Color::Rgb(255,255,255), format!("{}", a)); + Bsp::s(Tui::bold(true, "tek!"), Bsp::s("", Map::south(1, options, option))) } fn view_help (&self) -> impl Content { let bindings = ||TokenIter::new(include_str!("../edn/groovebox_keys.edn"))