Fix compile error

This commit is contained in:
Noisyfox 2025-05-07 16:47:28 +08:00
parent 92972879f5
commit ca68aa6d2b
3 changed files with 7 additions and 1 deletions

View file

@ -1175,6 +1175,12 @@ void MachineObject::reset_mapping_result(std::vector<FilamentInfo>& result)
}
}
bool MachineObject::is_main_extruder_on_left() const
{
// only means the extruder is on the left hand when extruder id is 0
return false;
}
bool MachineObject::is_multi_extruders() const
{
return m_extder_data.total_extder_count > 1;