diff --git a/client/src/main/java/ctbrec/ui/menu/ModelMenuContributor.java b/client/src/main/java/ctbrec/ui/menu/ModelMenuContributor.java index be030554..0241c048 100644 --- a/client/src/main/java/ctbrec/ui/menu/ModelMenuContributor.java +++ b/client/src/main/java/ctbrec/ui/menu/ModelMenuContributor.java @@ -362,21 +362,6 @@ public class ModelMenuContributor { private void startStopAction(List selection, boolean start) { if (start) { - // boolean selectSource = Config.getInstance().getSettings().chooseStreamQuality; - // if (selectSource) { - // for (Model model : selection) { - // Consumer onSuccess = modl -> startRecording(List.of(modl)); - // Consumer onFail = throwable -> { - // Alert alert = new AutosizeAlert(Alert.AlertType.ERROR, source.getScene()); - // alert.setTitle(ERROR); - // alert.setHeaderText(COULDNT_START_STOP_RECORDING); - // alert.setContentText("I/O error while starting/stopping the recording: " + throwable.getLocalizedMessage()); - // alert.showAndWait(); - // }; - // StreamSourceSelectionDialog.show(source.getScene(), model, onSuccess, onFail); - // } - // } else { - // } startRecording(selection); } else { stopRecording(selection);