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
There is a small issue in displaying the textual percentage progress. The value returned by getProgress() is calculated based on modulus operator % which returns the remainder not the percent value. While assigning value to textual field, it should apply this formula getProgress() * 100 / getMax().
The text was updated successfully, but these errors were encountered:
There is a small issue in displaying the textual percentage progress. The value returned by
getProgress()
is calculated based on modulus operator%
which returns the remainder not the percent value. While assigning value to textual field, it should apply this formulagetProgress() * 100 / getMax()
.The text was updated successfully, but these errors were encountered: