fix initial progress stats
This commit is contained in:
parent
433702f421
commit
8c4022b06b
1 changed files with 3 additions and 4 deletions
|
@ -124,15 +124,14 @@ func (b *Bar) Stats() Stats {
|
|||
|
||||
switch {
|
||||
case b.statted.IsZero():
|
||||
case b.currentValue >= b.maxValue:
|
||||
b.stats = Stats{
|
||||
value: b.maxValue,
|
||||
value: b.initialValue,
|
||||
rate: 0,
|
||||
remaining: 0,
|
||||
}
|
||||
case b.statted.IsZero():
|
||||
case b.currentValue >= b.maxValue:
|
||||
b.stats = Stats{
|
||||
value: b.initialValue,
|
||||
value: b.maxValue,
|
||||
rate: 0,
|
||||
remaining: 0,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue