take control of cursive event loop, may be useful later

This commit is contained in:
Henrik Friedrichsen
2019-02-26 23:31:47 +01:00
parent 204cb18410
commit 212132c2c3

View File

@@ -112,5 +112,8 @@ fn main() {
s.set_screen(searchscreen);
});
cursive.run();
// cursive event loop
while cursive.is_running() {
cursive.step();
}
}