From 40c339dd745770f8ed318e8c04d8f7b0df6ce39b Mon Sep 17 00:00:00 2001 From: yw1573 Date: Thu, 30 Jul 2026 09:32:18 +0800 Subject: [PATCH] =?UTF-8?q?fix(gui):=20=E6=B7=BB=E5=8A=A03MF=E5=A4=B1?= =?UTF-8?q?=E8=B4=A5=E6=97=B6=E5=BC=B9=E7=AA=97=E6=8F=90=E7=A4=BA=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E5=8E=9F=E5=9B=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a1_swap_mod_packer/gui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/a1_swap_mod_packer/gui.py b/a1_swap_mod_packer/gui.py index 76740b1..db839f6 100644 --- a/a1_swap_mod_packer/gui.py +++ b/a1_swap_mod_packer/gui.py @@ -1053,7 +1053,8 @@ class MainWindow(QMainWindow): path = Path(file_name) try: summary = read_3mf_summary(path) - except Exception: + except Exception as exc: + QMessageBox.warning(self, t("gui.dialog.warning.title"), t("gui.log.skipped_file", path=path.name, reason=str(exc))) return False row = self.table.rowCount() self._updating_table = True