From ca938658edcb6edf3fcbb71d3ac6d242719881b8 Mon Sep 17 00:00:00 2001 From: Akamaru Date: Tue, 6 May 2025 20:00:21 +0200 Subject: [PATCH] =?UTF-8?q?Setze=20den=20Eingabewert=20f=C3=BCr=20den=20be?= =?UTF-8?q?nutzerdefinierten=20Pfad=20immer=20zur=C3=BCck,=20unabh=C3=A4ng?= =?UTF-8?q?ig=20vom=20Preset-Typ.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()