From 2c92982f52e8471469233e69bc8625598e1ea776 Mon Sep 17 00:00:00 2001
From: Mateusz Wykurz <wykurz@gmail.com>
Date: Sun, 13 Oct 2024 21:06:50 -0600
Subject: [PATCH] Fix how we display updated progress bar in the TextUpdates
 setting

---
 common/src/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/src/lib.rs b/common/src/lib.rs
index a1d5de6..8338ffb 100644
--- a/common/src/lib.rs
+++ b/common/src/lib.rs
@@ -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 {