diff --git a/main.py b/main.py index ea315c3..2e0f32c 100644 --- a/main.py +++ b/main.py @@ -1663,11 +1663,13 @@ class MainWindow(QMainWindow): has_series = preset.get("has_series_template", False) self.series_group.setVisible(has_series) + # Setze den custom_path_input immer zurück, unabhängig vom Preset-Typ + self.custom_path_input.setText(preset.get("custom_path", "")) + if has_series: self.series_input.setText(preset.get("series", "")) self.season_input.setText(preset.get("season", "1")) self.episode_input.setText(preset.get("episode", "1")) - self.custom_path_input.setText(preset.get("custom_path", "")) self.update_cmd_preview()