mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Rename method
This commit is contained in:
parent
55e55d4f19
commit
9908bcf33a
@ -463,7 +463,7 @@ public abstract class TradeStepView extends AnchorPane {
|
||||
break;
|
||||
}
|
||||
|
||||
deactivatePaymentButtons(isDisputed());
|
||||
updateConfirmButtonDisableState(isDisputed());
|
||||
}
|
||||
|
||||
private void updateMediationResultState(boolean blockOpeningOfResultAcceptedPopup) {
|
||||
@ -603,7 +603,7 @@ public abstract class TradeStepView extends AnchorPane {
|
||||
acceptMediationResultPopup.show();
|
||||
}
|
||||
|
||||
protected void deactivatePaymentButtons(boolean isDisabled) {
|
||||
protected void updateConfirmButtonDisableState(boolean isDisabled) {
|
||||
}
|
||||
|
||||
private void updateTradePeriodState(Trade.TradePeriodState tradePeriodState) {
|
||||
|
@ -637,7 +637,7 @@ public class BuyerStep2View extends TradeStepView {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void deactivatePaymentButtons(boolean isDisabled) {
|
||||
protected void updateConfirmButtonDisableState(boolean isDisabled) {
|
||||
confirmButton.setDisable(isDisabled);
|
||||
}
|
||||
}
|
||||
|
@ -515,7 +515,7 @@ public class SellerStep3View extends TradeStepView {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void deactivatePaymentButtons(boolean isDisabled) {
|
||||
protected void updateConfirmButtonDisableState(boolean isDisabled) {
|
||||
confirmButton.setDisable(isDisabled);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user