Development into Master #10

Merged
michael-bailey merged 102 commits from Development into master 2021-08-03 20:53:15 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 5243a6ce8e - Show all commits

View File

@ -2,10 +2,10 @@ use cursive::views::{Dialog, TextView};
use cursive::view::ViewWrapper;
use cursive::{Printer, View};
pub fn About() -> Box<dyn View> {
pub fn about() -> Box<dyn View> {
Box::new(
Dialog::new()
.content("rust chat server written by Mitchel Hardie & Michael Bailey (c) 2020")
.content(TextView::new("rust chat server written by Mitchel Hardie & Michael Bailey (c) 2020"))
.button("Close", |s| {s.pop_layer();})
)
}