diff options
author | Akshay <[email protected]> | 2021-01-27 03:23:38 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2021-01-27 03:23:38 +0000 |
commit | 0a00129947bcc8dd70de01c0a4ef54832515fdc7 (patch) | |
tree | fe0b9e5d94add8dacdc99a2640e6e501c5533038 /src/main.rs | |
parent | 3570b4bb5de61abff6bdc8ba6bbfd806a1ebce0d (diff) | |
parent | 3fc86c52f7fab0a1e0fcdd3be17bd5a53135225e (diff) |
Merge branch 'master' of https://github.com/gyscos/dijo into deps/cursive-0.16
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 5280b35..92e29f9 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -69,10 +69,10 @@ fn main() { | |||
69 | } | 69 | } |
70 | } else { | 70 | } else { |
71 | #[cfg(any(feature = "termion-backend", feature = "default"))] | 71 | #[cfg(any(feature = "termion-backend", feature = "default"))] |
72 | let mut s = termion().unwrap(); | 72 | let mut s = termion(); |
73 | 73 | ||
74 | #[cfg(feature = "crossterm-backend")] | 74 | #[cfg(feature = "crossterm-backend")] |
75 | let mut s = crossterm().unwrap(); | 75 | let mut s = crossterm(); |
76 | 76 | ||
77 | let app = App::load_state(); | 77 | let app = App::load_state(); |
78 | let layout = NamedView::new( | 78 | let layout = NamedView::new( |