From 04a321d22573b999c113f6bd13b0439e284d112c Mon Sep 17 00:00:00 2001 From: DXC Date: Wed, 10 Jun 2026 09:46:14 +0800 Subject: [PATCH] =?UTF-8?q?fix(step14):=20=E4=BF=AE=E6=AD=A3=E6=B5=81?= =?UTF-8?q?=E6=B0=B4=E7=BA=BF=E6=96=B9=E6=B3=95=E5=90=8D=20step9=5Fgenerat?= =?UTF-8?q?e=5Fdistribution=5Fmap=20=E2=86=92=20step14=5Fdistribution=5Fma?= =?UTF-8?q?p?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gui/panels/step14_panel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/panels/step14_panel.py b/src/gui/panels/step14_panel.py index 77e9aa7..e6a24e7 100644 --- a/src/gui/panels/step14_panel.py +++ b/src/gui/panels/step14_panel.py @@ -65,7 +65,7 @@ class Step14BatchThread(QThread): kw["output_image_path"] = str(Path(self.output_dir_optional) / f"{stem}_distribution.png") else: kw["output_image_path"] = None - pipeline.step9_generate_distribution_map(**kw) + pipeline.step14_distribution_map(**kw) self.finished_ok.emit(n) except Exception as e: self.failed.emit(f"{e}\n{traceback.format_exc()}")