Browse Source

clear fiat amounts

bwt
Craig Raw 4 years ago
parent
commit
4c8f7bb711
  1. 2
      drongo
  2. 4
      src/main/java/com/sparrowwallet/sparrow/wallet/SendController.java

2
drongo

@ -1 +1 @@
Subproject commit b9ef670e61885362f6d7d4879c61ea6792434d2a Subproject commit 9663629e344ad19f5eb550f6d87bd27048f3704e

4
src/main/java/com/sparrowwallet/sparrow/wallet/SendController.java

@ -504,10 +504,14 @@ public class SendController extends WalletFormController implements Initializabl
amount.setText(""); amount.setText("");
amount.textProperty().addListener(amountListener); amount.textProperty().addListener(amountListener);
fiatAmount.setText("");
fee.textProperty().removeListener(feeListener); fee.textProperty().removeListener(feeListener);
fee.setText(""); fee.setText("");
fee.textProperty().addListener(feeListener); fee.textProperty().addListener(feeListener);
fiatFeeAmount.setText("");
userFeeSet.set(false); userFeeSet.set(false);
targetBlocks.setValue(4); targetBlocks.setValue(4);
utxoSelectorProperty.setValue(null); utxoSelectorProperty.setValue(null);

Loading…
Cancel
Save