Skip to content

Commit

Permalink
Ensure digit grouping isn't used
Browse files Browse the repository at this point in the history
  • Loading branch information
jzbrooks committed Oct 18, 2024
1 parent ae2d4ec commit a232af1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class ScalableVectorGraphicWriter(
maximumFractionDigits = 2 // todo: parameterize?
minimumIntegerDigits = 0
isDecimalSeparatorAlwaysShown = false
isGroupingUsed = false
roundingMode = RoundingMode.HALF_UP
decimalFormatSymbols =
DecimalFormatSymbols().apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class VectorDrawableWriter(
maximumFractionDigits = 2 // todo: parameterize?
minimumIntegerDigits = 0
isDecimalSeparatorAlwaysShown = false
isGroupingUsed = false
roundingMode = RoundingMode.HALF_UP
decimalFormatSymbols =
DecimalFormatSymbols().apply {
Expand Down

0 comments on commit a232af1

Please sign in to comment.