fix missing brace (#495)

This commit is contained in:
poorie 2020-08-24 09:48:07 -06:00 committed by GitHub
parent ad935f5126
commit 792c4f1638
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -245,7 +245,7 @@ fn add_name(s: &mut Cursive) {
view.get_content()
}).unwrap();
})
.button("Cancel", |s|
.button("Cancel", |s| {
s.pop_layer();
}));
}