Add introductory screen to check view if main run is not started

This commit is contained in:
Armin Schrenk
2021-07-13 15:52:53 +02:00
parent e40ce62877
commit 102ab93dbd
3 changed files with 12 additions and 11 deletions

View File

@@ -68,10 +68,13 @@ public class CheckListController implements FxController {
}
@FXML
public void toggleSelectAll(ActionEvent event) {
if (event.getSource() instanceof CheckBox c) {
checks.forEach(t -> t.chosenForExecutionProperty().set(c.isSelected()));
}
public void selectAllChecks() {
checks.forEach(t -> t.chosenForExecutionProperty().set(true));
}
@FXML
public void deselectAllChecks() {
checks.forEach(t -> t.chosenForExecutionProperty().set(false));
}
@FXML