aboutsummaryrefslogtreecommitdiff
path: root/src/gui/question.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/question.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/question.rs')
-rw-r--r--src/gui/question.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/question.rs b/src/gui/question.rs
index 2060cb7..426daa9 100644
--- a/src/gui/question.rs
+++ b/src/gui/question.rs
@@ -203,7 +203,11 @@ pub fn ask<B: Backend>(
fn is_correct(input: &str, responses: &[String]) -> bool {
// Remove whitespaces
- let input = input.split_whitespace().map(|word| word.trim()).collect::<Vec<&str>>().join(" ");
+ let input = input
+ .split_whitespace()
+ .map(|word| word.trim())
+ .collect::<Vec<&str>>()
+ .join(" ");
responses
.iter()