From 341d10931175e118cfc1bbd6fe65e4743c99149a Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Mon, 17 Feb 2025 15:05:49 +0800 Subject: [PATCH] FIX: the extruder id is incorrect when send cali jira: none Change-Id: I102061741458321de3ae571ce17430f7eabb3bb8 --- src/slic3r/GUI/DeviceManager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/DeviceManager.cpp b/src/slic3r/GUI/DeviceManager.cpp index 65b73555c..ebc69f19a 100644 --- a/src/slic3r/GUI/DeviceManager.cpp +++ b/src/slic3r/GUI/DeviceManager.cpp @@ -1221,7 +1221,8 @@ void MachineObject::reset_mapping_result(std::vector& result) bool MachineObject::is_main_extruder_on_left() const { - return printer_type.find("O1D") == std::string::npos; // not O1D + // only means the extruder is on the left hand when extruder id is 0 + return false; } bool MachineObject::is_multi_extruders() const