From 855797a1b38f2f02fb40ca2ab932136ff3a49df4 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Mon, 6 Apr 2026 16:07:44 +0200 Subject: [PATCH] docs: clarify _last_export_path holds dir path for WebP sequence --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index 01ad3d9..f2d3241 100644 --- a/main.py +++ b/main.py @@ -1013,6 +1013,8 @@ class MainWindow(QMainWindow): def _on_export_done(self, path: str): self._db.add(os.path.basename(self._file_path), self._cursor, path) + # For MP4 exports path is a file; for WebP sequence it is a directory. + # build_mask_output_dir handles both correctly via Path.stem. self._last_export_path = path self._export_counter += 1 self._update_next_label()