https://bugs.kde.org/show_bug.cgi?id=491828

--- Comment #8 from Ralf Habacker <ralf.habac...@freenet.de> ---
(In reply to Ralf Habacker from comment #4)
...
> editing currency "Türkische Lira (alt)" "TL" 100 100
> cash precision 2 "0,01 Ç"
> account precision 2 "0,01 Ç"
...
> editing currency "Bitcoin" "BTC" 100000000 100000000
> cash precision 8 "0,00 Ç"
> account precision 8 "0,00 Ç"
> 
> which is still using currency "TL" -> The currency used has not been updated.

This issue is caused by using 

    smallestFraction.formatMoney(QString(), precision) 

by changing this call to use currency.name() instead

    smallestFraction.formatMoney(currency.name(), precision) 

and with the fix mentioned in comment 7 I get

cash precision 8 "0,00000001 Bitcoin"

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to