Fix pop_layer button in tutorial_3.md

This commit is contained in:
Alexandre Bury 2018-08-19 08:38:33 -07:00 committed by GitHub
parent 5a6c84a55e
commit 682fadeb1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,9 @@ fn add_name(s: &mut Cursive) {
}).unwrap(); }).unwrap();
ok(s, &name); ok(s, &name);
}) })
.button("Cancel", |s| s.pop_layer())); .button("Cancel", |s| {
s.pop_layer();
}));
} }
fn delete_name(s: &mut Cursive) { fn delete_name(s: &mut Cursive) {
@ -206,7 +208,9 @@ fn add_name(s: &mut Cursive) {
.button("Ok", |s| { .button("Ok", |s| {
// What do we do now?... // What do we do now?...
}) })
.button("Cancel", |s| s.pop_layer())); .button("Cancel", |s| {
s.pop_layer();
}));
} }
``` ```
@ -243,7 +247,9 @@ fn add_name(s: &mut Cursive) {
view.get_content() view.get_content()
}).unwrap(); }).unwrap();
}) })
.button("Cancel", |s| s.pop_layer())); .button("Cancel", |s|
s.pop_layer();
}));
} }
``` ```
@ -284,7 +290,9 @@ fn add_name(s: &mut Cursive) {
}).unwrap(); }).unwrap();
ok(s, &name); ok(s, &name);
}) })
.button("Cancel", |s| s.pop_layer())); .button("Cancel", |s| {
s.pop_layer();
}));
} }
``` ```