Merge Interface branch onto development branch #5

Closed
michael-bailey wants to merge 53 commits from Interface into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 3fbfc7f3d8 - Show all commits

View File

@ -4,7 +4,7 @@ use crate::server::ui::about_panel::about;
pub fn main_menu() -> MenuTree {
MenuTree::new()
.leaf("About ^+A", |s| s.add_layer(About::new()))
.leaf("About ^+A", |s| s.add_layer(about()))
.delimiter()
.leaf("Quit ^+Q", |s| s.quit())
}