adds multiplication bug workaround (closes #3)
This commit is contained in:
parent
ad53173d20
commit
261a3ca0b8
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@
|
|||
if i == 0 {
|
||||
return "0.00€"
|
||||
}
|
||||
str(i * 100).slice(0,-2)+ "." + str(i * 100).slice(-2) + " €"
|
||||
str(calc.round(i * 100)).slice(0,-2)+ "." + str(i * 100).slice(-2) + "€"
|
||||
}
|
||||
|
||||
// DIN 5008 nach Faltmarke 1
|
||||
|
|
Loading…
Add table
Reference in a new issue