You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Up until now, it has been very hard to determin whether a progressbar
has a known maximum value or not, because the property `max` is an
integer. Up until now, `max == 0` has been treated like we do _not_
know the `max` value. However, `max == 0` _is_ a valid `max` value
when iterating over an empty but countable array for example.
We cannot simply keep `max == null` if unknown, because that would break
rendering mechanics and fixing those would require interface changes.
Hence, enter `isMaxKnown` - a property which keeps track of whether the
`max` value is known or not.
0 commit comments