From 77130cf68d84645742f03d223012e433b59cf45b Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Fri, 30 Aug 2024 12:19:49 +0800 Subject: [PATCH] FIX: CLI: don't auto arrange when printer not changed JIRA: no-jira Change-Id: I8745540c06c1f9c74bfe8e32247ca3a18ba26365 --- src/BambuStudio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BambuStudio.cpp b/src/BambuStudio.cpp index b83ba8bdc..9be04face 100644 --- a/src/BambuStudio.cpp +++ b/src/BambuStudio.cpp @@ -4000,7 +4000,7 @@ int CLI::run(int argc, char **argv) need_arrange = true; } - if ((!need_arrange) && is_bbl_3mf && !shrink_to_new_bed && (plate_to_slice > 0)) + if ((!need_arrange) && is_bbl_3mf && !shrink_to_new_bed && (plate_to_slice > 0) && !new_printer_system_name.empty() && (new_printer_system_name!= current_printer_system_name)) { if (((old_height_to_rod != 0.f) && (old_height_to_rod != height_to_rod)) || ((old_height_to_lid != 0.f) && (old_height_to_lid != height_to_lid))