mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-22 11:39:29 +00:00
fix "Funds needed: .123 XMR (null)" bug
This commit is contained in:
parent
db6367c656
commit
526a1b5f37
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue