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
Hey,
first of all, I love the simple mobile tools! Amazing job all around!
This bug might be related to #195, but I'm not sure:
If you type a long decimal number starting with 0.999..., as soon as the number is long enough so that the font size changes, the number increases by one with each newly input digit.
e.g. for me, 0.9999999999, add another 9 => 1.9999999999; another 9 => 2.9999999999 and so on.
This doesn't seem like just "accuracy loss" as #195, since it becomes increasingly far off, maybe they are related.
Keep up the great work, cheers!
The text was updated successfully, but these errors were encountered:
I have debugged this issue and #195 issues.
Cause : Whenever the number crosses the size of "Double" (64bit), the app can't handle the calculation and formatting.
location : numberhelper > addGroupingSeparators > toDouble method.
Suggestion : Add a validation, and return "Out of range" message/error
Hey,
first of all, I love the simple mobile tools! Amazing job all around!
This bug might be related to #195, but I'm not sure:
If you type a long decimal number starting with 0.999..., as soon as the number is long enough so that the font size changes, the number increases by one with each newly input digit.
e.g. for me, 0.9999999999, add another 9 => 1.9999999999; another 9 => 2.9999999999 and so on.
This doesn't seem like just "accuracy loss" as #195, since it becomes increasingly far off, maybe they are related.
Keep up the great work, cheers!
The text was updated successfully, but these errors were encountered: