mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Add case when you have multiple inputs and not all are selected
This commit is contained in:
parent
3cb79956db
commit
77f5dc8822
@ -740,6 +740,17 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
|
||||
inputsToggleGroup.selectedToggleProperty().removeListener(inputsToggleGroupListener);
|
||||
inputsToggleGroup.selectToggle(useCustomInputsRadioButton);
|
||||
useAllInputs.set(false);
|
||||
|
||||
useCustomFee.setSelected(false);
|
||||
|
||||
transactionFeeInputTextField.setEditable(false);
|
||||
transactionFeeInputTextField.setPromptText(Res.get("funds.withdrawal.useCustomFeeValueInfo"));
|
||||
transactionFeeInputTextField.setText(String.valueOf(feeService.getTxFeePerVbyte().value));
|
||||
transactionFeeInputTextField.focusedProperty().addListener(transactionFeeFocusedListener);
|
||||
|
||||
feeService.feeUpdateCounterProperty().addListener(transactionFeeChangeListener);
|
||||
useCustomFee.selectedProperty().addListener(useCustomFeeCheckboxListener);
|
||||
|
||||
inputsToggleGroup.selectedToggleProperty().addListener(inputsToggleGroupListener);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user