Skip to content

Commit

Permalink
Fix how we display updated progress bar in the TextUpdates setting
Browse files Browse the repository at this point in the history
  • Loading branch information
wykurz committed Oct 14, 2024
1 parent 807d0c2 commit 2c92982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fn text_updates(
let mut prog_printer = progress::ProgressPrinter::new(&PROGRESS);
let mut is_done = lock.lock().unwrap();
loop {
eprintln!("{}", prog_printer.print().unwrap());
eprintln!("--{}", prog_printer.print().unwrap());
let result = cvar.wait_timeout(is_done, delay).unwrap();
is_done = result.0;
if *is_done {
Expand Down

0 comments on commit 2c92982

Please sign in to comment.