mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
Update the intent on SI-style separators.
This commit is contained in:
parent
9ff0bc9beb
commit
1cf23f6c50
@ -106,10 +106,8 @@ QString BitcoinUnits::format(int unit, const CAmount& nIn, bool fPlus, Separator
|
|||||||
QString quotient_str = QString::number(quotient);
|
QString quotient_str = QString::number(quotient);
|
||||||
QString remainder_str = QString::number(remainder).rightJustified(num_decimals, '0');
|
QString remainder_str = QString::number(remainder).rightJustified(num_decimals, '0');
|
||||||
|
|
||||||
// Use SI-stule separators as these are locale indendent and can't be
|
// Use SI-style thin space separators as these are locale independent and can't be
|
||||||
// confused with the decimal marker. Rule is to use a thin space every
|
// confused with the decimal marker.
|
||||||
// three digits on *both* sides of the decimal point - but only if there
|
|
||||||
// are five or more digits
|
|
||||||
QChar thin_sp(THIN_SP_CP);
|
QChar thin_sp(THIN_SP_CP);
|
||||||
int q_size = quotient_str.size();
|
int q_size = quotient_str.size();
|
||||||
if (separators == separatorAlways || (separators == separatorStandard && q_size > 4))
|
if (separators == separatorAlways || (separators == separatorStandard && q_size > 4))
|
||||||
|
Loading…
Reference in New Issue
Block a user