FIX: the extruder id is incorrect when send cali

jira: none
Change-Id: I102061741458321de3ae571ce17430f7eabb3bb8
This commit is contained in:
zhimin.zeng 2025-02-17 15:05:49 +08:00 committed by lane.wei
parent 901791201f
commit 341d109311
1 changed files with 2 additions and 1 deletions

View File

@ -1221,7 +1221,8 @@ void MachineObject::reset_mapping_result(std::vector<FilamentInfo>& 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