From 28c8a3b112e49ed6041e11b44adccdb0d096792e Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 15 Jul 2023 09:26:15 +0200 Subject: Only show remaining cards, not progress I am generally interested on decreasing the count of remaining cards, and I sometimes closed and re-opened the app to have a clear view of the remaining count. --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index c671d0e..ddc6edc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,9 +17,9 @@ struct Opt { #[clap(long, default_value = "deck.deck")] deck: String, - /// Hide current and remaining card counts + /// Hide remaining card counts #[clap(long)] - hide_progress: bool, + hide_remaining: bool, } fn main() -> Result<()> { @@ -32,7 +32,7 @@ fn main() -> Result<()> { let mut term = gui::setup_terminal()?; - match gui::start(&conn, &mut term, &deck_name, args.hide_progress) { + match gui::start(&conn, &mut term, &deck_name, args.hide_remaining) { Ok(()) => (), Err(msg) => { // Show errors in TUI, otherwise they are hidden -- cgit v1.2.3