mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-18 18:51:26 +00:00
Add introductory screen to check view if main run is not started
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user