AddMax takes in a int and adds it to the max value of the progress bar
(added int)
| 890 | // and adds it to the max |
| 891 | // value of the progress bar |
| 892 | func (p *ProgressBar) AddMax(added int) { |
| 893 | p.AddMax64(int64(added)) |
| 894 | } |
| 895 | |
| 896 | // AddMax64 is basically |
| 897 | // the same as AddMax, |