mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 23:58:18 +00:00
qt: Remove thousands separators after decimal point
Revert thousands separators after decimal point, as introduced in #4167.
This commit is contained in:
parent
1f01b29c6f
commit
a95b1199db
@ -115,11 +115,6 @@ QString BitcoinUnits::format(int unit, qint64 n, bool fPlus, SeparatorStyle sepa
|
|||||||
for (int i = 3; i < q_size; i += 3)
|
for (int i = 3; i < q_size; i += 3)
|
||||||
quotient_str.insert(q_size - i, thin_sp);
|
quotient_str.insert(q_size - i, thin_sp);
|
||||||
|
|
||||||
int r_size = remainder_str.size();
|
|
||||||
if (separators == separatorAlways || (separators == separatorStandard && r_size > 4))
|
|
||||||
for (int i = 3, adj = 0; i < r_size ; i += 3, adj++)
|
|
||||||
remainder_str.insert(i + adj, thin_sp);
|
|
||||||
|
|
||||||
if (n < 0)
|
if (n < 0)
|
||||||
quotient_str.insert(0, '-');
|
quotient_str.insert(0, '-');
|
||||||
else if (fPlus && n > 0)
|
else if (fPlus && n > 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user