keep the numbers properly formatted at clearing digits

This commit is contained in:
tibbi 2016-01-21 23:03:19 +01:00
parent c90c123971
commit 12a07c0fcc
1 changed files with 1 additions and 4 deletions

View File

@ -188,10 +188,7 @@ public class CalculatorImpl {
else
newValue = "0";
if (newValue.equals("-0"))
newValue = "0";
newValue = newValue.replaceAll(",$", "");
newValue = formatString(newValue);
setValue(newValue);
baseValue = Formatter.stringToDouble(newValue);
}