Disable payment accounts combobox in pay funds screen

This commit is contained in:
Christoph Atteneder 2019-01-07 16:49:43 +01:00
parent 946d1ec13c
commit d32ee388b7
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B

View file

@ -484,6 +484,10 @@ public class TakeOfferView extends ActivatableViewAndModel<AnchorPane, TakeOffer
model.onShowPayFundsScreen();
paymentAccountsComboBox.setMouseTransparent(true);
paymentAccountsComboBox.setDisable(true);
paymentAccountsComboBox.setFocusTraversable(false);
amountTextField.setMouseTransparent(true);
amountTextField.setDisable(false);
amountTextField.setFocusTraversable(false);