mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-24 12:46:45 +00:00
clear fiat amounts
This commit is contained in:
parent
77dd8ca5d7
commit
4c8f7bb711
2 changed files with 5 additions and 1 deletions
2
drongo
2
drongo
|
@ -1 +1 @@
|
||||||
Subproject commit b9ef670e61885362f6d7d4879c61ea6792434d2a
|
Subproject commit 9663629e344ad19f5eb550f6d87bd27048f3704e
|
|
@ -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…
Reference in a new issue