WT1.1.17 +4 pointer fix

This commit is contained in:
bossanyit
2021-05-16 23:48:57 +02:00
parent 7b0d15aede
commit 4b6b4dafc7
18 changed files with 187 additions and 93 deletions
+3 -1
View File
@@ -140,6 +140,8 @@ mixin Common {
}
static normalizeDecimal(String value) {
return value.replaceFirst(",", ".");
value = value.replaceFirst(",", ".");
value = value.replaceAll(RegExp(r'[^0-9.]'), "");
return value;
}
}