console-rs / indicatif

A command line progress reporting library for Rust
MIT License
4.45k stars 243 forks source link

Support increasing progress bar length #661

Closed seanaye closed 1 month ago

seanaye commented 1 month ago

It doesn't look like there is a way to increase the length of the progress bar after creating it.

It would be great if we could increase the total as the bar is already running

djc commented 1 month ago

Is ProgressBar::set_length() not what you are looking for?

seanaye commented 1 month ago

Ah, missed that somehow thanks