mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
enable create button when sending max payment to a linked paynym
This commit is contained in:
parent
5357b55ef4
commit
689f4abfde
1 changed files with 1 additions and 1 deletions
|
@ -400,7 +400,7 @@ public class SendController extends WalletFormController implements Initializabl
|
||||||
|
|
||||||
transactionDiagram.update(walletTransaction);
|
transactionDiagram.update(walletTransaction);
|
||||||
updatePrivacyAnalysis(walletTransaction);
|
updatePrivacyAnalysis(walletTransaction);
|
||||||
createButton.setDisable(walletTransaction == null || isInsufficientFeeRate() || isPayNymMixOnlyPayment(walletTransaction.getPayments()));
|
createButton.setDisable(walletTransaction == null || isInsufficientFeeRate() || isPayNymMixOnlyPayment(getPayments()));
|
||||||
});
|
});
|
||||||
|
|
||||||
transactionDiagram.sceneProperty().addListener((observable, oldScene, newScene) -> {
|
transactionDiagram.sceneProperty().addListener((observable, oldScene, newScene) -> {
|
||||||
|
|
Loading…
Reference in a new issue