Merge pull request #1100 from clay53/master
Changed wallet send notification to accept 4 digit decimal
This commit is contained in:
commit
67d5f88d34
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ public class WalletFragment extends BaseFragment implements SdkStatusListener, W
|
||||||
double sentAmount = actualSendAmount;
|
double sentAmount = actualSendAmount;
|
||||||
String message = getResources().getQuantityString(
|
String message = getResources().getQuantityString(
|
||||||
R.plurals.you_sent_credits, sentAmount == 1.0 ? 1 : 2,
|
R.plurals.you_sent_credits, sentAmount == 1.0 ? 1 : 2,
|
||||||
new DecimalFormat("#,###.##").format(sentAmount));
|
new DecimalFormat("#,###.####").format(sentAmount));
|
||||||
Helper.setViewText(inputSendAddress, null);
|
Helper.setViewText(inputSendAddress, null);
|
||||||
Helper.setViewText(inputSendAmount, null);
|
Helper.setViewText(inputSendAmount, null);
|
||||||
if (view != null) {
|
if (view != null) {
|
||||||
|
|
Loading…
Reference in a new issue