Skip to content

Commit

Permalink
Always show fee while outgoing transaction is still pending.
Browse files Browse the repository at this point in the history
  • Loading branch information
schildbach committed Apr 30, 2015
1 parent d969d5b commit 7fada10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wallet/src/de/schildbach/wallet/ui/TransactionsAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,8 @@ else if (txCache.address != null)
addressView.setSingleLine(!itemView.isActivated());

// fee
extendFeeView.setVisibility(itemView.isActivated() && txCache.showFee ? View.VISIBLE : View.GONE);
extendFeeView.setVisibility((itemView.isActivated() || confidenceType == ConfidenceType.PENDING) && txCache.showFee ? View.VISIBLE
: View.GONE);
feeView.setAlwaysSigned(true);
feeView.setFormat(format);
if (txCache.showFee)
Expand Down

0 comments on commit 7fada10

Please sign in to comment.