Larger window for key_codes example

This commit is contained in:
Alexandre Bury 2017-10-08 16:01:04 -07:00
parent c1d979b91c
commit c7f995fd72

View File

@ -7,7 +7,7 @@ use cursive::event::{Event, EventResult};
fn main() {
let mut siv = Cursive::new();
siv.add_layer(KeyCodeView::new(10).fixed_size((30, 10)));
siv.add_layer(KeyCodeView::new(10).fixed_size((70, 10)));
siv.run();
}