OptionShowBytes will update the progress bar configuration settings to display/hide kBytes/Sec
(val bool)
| 373 | // OptionShowBytes will update the progress bar |
| 374 | // configuration settings to display/hide kBytes/Sec |
| 375 | func OptionShowBytes(val bool) Option { |
| 376 | return func(p *ProgressBar) { |
| 377 | p.config.showBytes = val |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | // OptionUseANSICodes will use more optimized terminal i/o. |
| 382 | // |
no outgoing calls
searching dependent graphs…