aboutsummaryrefslogtreecommitdiff
path: root/src/gui/mod.rs
diff options
context:
space:
mode:
authorJoris2022-11-21 14:47:36 +0100
committerJoris2022-11-21 14:47:36 +0100
commitae8aafed5bad8edd594556bce079b1545aea9bec (patch)
tree88cff38eff55c9da1fc44d99dae2e72bd5a8d2eb /src/gui/mod.rs
parent3fbdc20859a7f795ab9396ead363ab7a9581405d (diff)
downloadflashcards-ae8aafed5bad8edd594556bce079b1545aea9bec.tar.gz
flashcards-ae8aafed5bad8edd594556bce079b1545aea9bec.tar.bz2
flashcards-ae8aafed5bad8edd594556bce079b1545aea9bec.zip
Show errors in TUI instead of nothing
Once the terminal was setup, errors were not shown in case the application stopped because of an error. So, show errors explicitely in TUI to be able to debug easily the deck for example.
Diffstat (limited to 'src/gui/mod.rs')
-rw-r--r--src/gui/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/mod.rs b/src/gui/mod.rs
index b39cbcf..719f39a 100644
--- a/src/gui/mod.rs
+++ b/src/gui/mod.rs
@@ -11,7 +11,7 @@ use std::{fs, io, time::Duration};
use termion::{raw::IntoRawMode, raw::RawTerminal, screen::AlternateScreen};
use tui::{backend::TermionBackend, Terminal};
-type Term = Terminal<TermionBackend<AlternateScreen<RawTerminal<io::Stdout>>>>;
+pub type Term = Terminal<TermionBackend<AlternateScreen<RawTerminal<io::Stdout>>>>;
pub fn terminal() -> Result<Term> {
let stdout = io::stdout().into_raw_mode()?;