fix "Funds needed: .123 XMR (null)" bug

This commit is contained in:
woodser 2022-08-17 12:54:19 -04:00
parent db6367c656
commit 526a1b5f37

View file

@ -49,7 +49,7 @@ public class FundsTextField extends InfoTextField {
public FundsTextField() {
super();
textField.textProperty().unbind();
textField.textProperty().bind(Bindings.concat(textProperty(), " ", fundsStructure));
textField.textProperty().bind(Bindings.concat(textProperty())); // TODO: removed `, " ", fundsStructure` for haveno to fix "Funds needed: .123 XMR (null)" bug
Label copyIcon = getIcon(AwesomeIcon.COPY);
copyIcon.setLayoutY(5);