Skip to content

Commit

Permalink
5 decimals for quantity and total
Browse files Browse the repository at this point in the history
  • Loading branch information
cipig committed Dec 11, 2021
1 parent e61c4d5 commit 2f5e998
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Item
DefaultText
{
Layout.preferredWidth: (parent.width / 100) * 30
text: parseFloat(quantity).toFixed(6)
text: parseFloat(quantity).toFixed(5)
font.family: DexTypo.fontFamily
font.pixelSize: 10
elide: Text.ElideRight
Expand All @@ -167,7 +167,7 @@ Item
rightPadding: (is_mine) && (mouse_are.containsMouse || cancel_button.containsMouse) ? 30 : 0
font.family: DexTypo.fontFamily
font.pixelSize: 10
text: parseFloat(total).toFixed(6)
text: parseFloat(total).toFixed(5)
elide: Text.ElideRight
horizontalAlignment: Text.AlignRight

Expand Down

0 comments on commit 2f5e998

Please sign in to comment.