Fixed silly bug with Scientific Notation

This commit is contained in:
Aktanusa
2018-07-13 00:01:35 -04:00
parent 22ae4ebc4c
commit cd1ea8269b
2 changed files with 2 additions and 2 deletions

View File

@@ -652,7 +652,7 @@ CM.Disp.Beautify = function(num, frac) {
if (CM.Config.Scale == 4) {
if (num > 9) {
var count = 0;
while (num > 9) {
while (num >= 10) {
count++;
num /= 10;
}