mirror of
https://github.com/boldsuck/haveno.git
synced 2024-12-23 04:29:22 +00:00
fix invalid res lookup for UpholdForm
This commit is contained in:
parent
5d39eecd4f
commit
31ce183c83
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public class UpholdForm extends PaymentMethodForm {
|
||||||
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("shared.paymentMethod"),
|
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("shared.paymentMethod"),
|
||||||
Res.get(upholdAccount.getPaymentMethod().getId()));
|
Res.get(upholdAccount.getPaymentMethod().getId()));
|
||||||
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.account.owner"),
|
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.account.owner"),
|
||||||
Res.get(upholdAccount.getAccountOwner()));
|
upholdAccount.getAccountOwner());
|
||||||
TextField field = addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.uphold.accountId"),
|
TextField field = addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.uphold.accountId"),
|
||||||
upholdAccount.getAccountId()).second;
|
upholdAccount.getAccountId()).second;
|
||||||
field.setMouseTransparent(false);
|
field.setMouseTransparent(false);
|
||||||
|
|
Loading…
Reference in a new issue