mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-13597 Bug fix: fraction digits were being marked as the INTEGER field in ICU4C.
X-SVN-Rev: 41158
This commit is contained in:
parent
3a55650b8c
commit
46c4709a94
1 changed files with 1 additions and 1 deletions
|
@ -518,7 +518,7 @@ int32_t NumberFormatterImpl::writeFractionDigits(const MicroProps& micros, Decim
|
|||
// Get and append the next digit value
|
||||
int8_t nextDigit = quantity.getDigit(-i - 1);
|
||||
length += insertDigitFromSymbols(
|
||||
string, string.length(), nextDigit, *micros.symbols, UNUM_INTEGER_FIELD, status);
|
||||
string, string.length(), nextDigit, *micros.symbols, UNUM_FRACTION_FIELD, status);
|
||||
}
|
||||
return length;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue