Open JHwarlock opened 9 months ago
let style = ProgressStyle::with_template( "[{elapsed_precise:.6}] |{bar:40.cyan/blue}| {eta_precise:.1} {percent_precise}% {msg}" // {percent_precise:3.0} ) .unwrap() .progress_chars("#>-");
code changed to "percent_precise:3" or "percent_precise:.3", no percent data displayed in progress bar
So you mean that the percent_precise precision cannot be modified?
percent_precise
yes
That just hasn't been implemented. I'm open to reviewing a PR for this but probably won't get to it myself.
Thanks a lot
let style = ProgressStyle::with_template( "[{elapsed_precise:.6}] |{bar:40.cyan/blue}| {eta_precise:.1} {percent_precise}% {msg}" // {percent_precise:3.0} ) .unwrap() .progress_chars("#>-");
code changed to "percent_precise:3" or "percent_precise:.3", no percent data displayed in progress bar