diff --git a/libgrive/src/util/ProgressBar.cc b/libgrive/src/util/ProgressBar.cc index efd71bc..6fe1444 100644 --- a/libgrive/src/util/ProgressBar.cc +++ b/libgrive/src/util/ProgressBar.cc @@ -53,8 +53,8 @@ void ProgressBar::reportProgress(u64_t total, u64_t processed) // only print progress after >= 0.1% change this->last = point; - // 10 for prefix of percent and 23 for suffix of file size - int availableSize = determineTerminalSize() - 33; + // 10 for prefix of percent and 26 for suffix of file size + int availableSize = determineTerminalSize() - 36; int totalDots; if (availableSize > 100) totalDots = 100;