mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Merge pull request #2315 from ripcurlx/fix-multiple-payment-account-selection-disabled
Not disable the payment account selection in take offer screen
This commit is contained in:
commit
8b7646a9df
2 changed files with 7 additions and 3 deletions
|
@ -411,6 +411,8 @@ public abstract class MutableOfferView<M extends MutableOfferViewModel> extends
|
|||
|
||||
model.onShowPayFundsScreen();
|
||||
|
||||
paymentAccountsComboBox.setDisable(true);
|
||||
|
||||
editOfferElements.forEach(node -> {
|
||||
node.setMouseTransparent(true);
|
||||
node.setFocusTraversable(false);
|
||||
|
|
|
@ -484,9 +484,11 @@ public class TakeOfferView extends ActivatableViewAndModel<AnchorPane, TakeOffer
|
|||
|
||||
model.onShowPayFundsScreen();
|
||||
|
||||
paymentAccountsComboBox.setMouseTransparent(true);
|
||||
paymentAccountsComboBox.setDisable(true);
|
||||
paymentAccountsComboBox.setFocusTraversable(false);
|
||||
if (DevEnv.isDaoActivated()) {
|
||||
paymentAccountsComboBox.setMouseTransparent(true);
|
||||
paymentAccountsComboBox.setDisable(true);
|
||||
paymentAccountsComboBox.setFocusTraversable(false);
|
||||
}
|
||||
|
||||
amountTextField.setMouseTransparent(true);
|
||||
amountTextField.setDisable(false);
|
||||
|
|
Loading…
Add table
Reference in a new issue