push help view to stack instead of making it a separate screen

fixes #157
This commit is contained in:
Henrik Friedrichsen
2020-03-21 15:51:35 +01:00
parent 9e68ed0ba6
commit 082675a5d7
4 changed files with 15 additions and 6 deletions

View File

@@ -42,4 +42,8 @@ impl ViewWrapper for HelpView {
wrap_impl!(self.view: ScrollView<TextView>);
}
impl ViewExt for HelpView {}
impl ViewExt for HelpView {
fn title(&self) -> String {
"Help".to_string()
}
}