Bug in Progess percentage calculation
zishanj opened this issue · 0 comments
zishanj commented
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()
.