Compare commits

...

1 commit
v1.0.1 ... main

Author SHA1 Message Date
7e15092e97
fix progress bar update on final render 2024-12-10 07:52:07 -05:00

View file

@ -50,7 +50,7 @@ func (p *ProgressBar) render(final bool) {
numBlank := 40 - numFilled numBlank := 40 - numFilled
donePercent := math.Round(float64(p.currentBytes) / float64(p.maxBytes) * 100) donePercent := math.Round(float64(p.currentBytes) / float64(p.maxBytes) * 100)
if int(donePercent) == p.currentPercent { if int(donePercent) == p.currentPercent && !final {
return return
} }
p.currentPercent = int(donePercent) p.currentPercent = int(donePercent)