Skip to content

Commit

Permalink
Uncheck all checkboxes by default
Browse files Browse the repository at this point in the history
  • Loading branch information
wp07e committed Jun 12, 2024
1 parent 422c26f commit 17c6303
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ void fillUpFlowPaneWithCurrencies(boolean isEditable, FlowPane flowPane,
checkBox.setMinWidth(60);
checkBox.setMaxWidth(checkBox.getMinWidth());
checkBox.setTooltip(new Tooltip(e.getName()));
checkBox.setSelected(false);
checkBox.setOnAction(event -> {
if (checkBox.isSelected())
paymentAccount.addCurrency(e);
Expand Down

0 comments on commit 17c6303

Please sign in to comment.