summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorStephan Dilly <dilly.stephan@gmail.com>2021-05-02 19:44:02 +0200
committerStephan Dilly <dilly.stephan@gmail.com>2021-05-02 20:06:43 +0200
commit56568e54aace580e76b91124a7987293386e2a6b (patch)
tree3b30746f80f3c30ca4a3143a176a0f38dd4367b9 /src/main.rs
parent62c824a51c39f3d45b5a54d539b188d2742de8a1 (diff)
tui update
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 8bb0ffa1..d63eb4b1 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -201,7 +201,9 @@ fn draw<B: Backend>(
if let Err(e) = app.draw(&mut f) {
log::error!("failed to draw: {:?}", e)
}
- })
+ })?;
+
+ Ok(())
}
fn valid_path() -> Result<bool> {