enable create button when sending max payment to a linked paynym

This commit is contained in:
Craig Raw 2022-03-08 10:22:39 +01:00
parent 5357b55ef4
commit 689f4abfde

View file

@ -400,7 +400,7 @@ public class SendController extends WalletFormController implements Initializabl
transactionDiagram.update(walletTransaction);
updatePrivacyAnalysis(walletTransaction);
createButton.setDisable(walletTransaction == null || isInsufficientFeeRate() || isPayNymMixOnlyPayment(walletTransaction.getPayments()));
createButton.setDisable(walletTransaction == null || isInsufficientFeeRate() || isPayNymMixOnlyPayment(getPayments()));
});
transactionDiagram.sceneProperty().addListener((observable, oldScene, newScene) -> {