mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 19:33:47 +00:00
Fix of an invalid extruder ID assignment after switching from
a multi-material printer to a single material printer (or a printer with a lower number of extruders).
This commit is contained in:
@@ -455,10 +455,14 @@ void Model::adjust_min_z()
|
|||||||
unsigned int Model::get_auto_extruder_id(unsigned int max_extruders)
|
unsigned int Model::get_auto_extruder_id(unsigned int max_extruders)
|
||||||
{
|
{
|
||||||
unsigned int id = s_auto_extruder_id;
|
unsigned int id = s_auto_extruder_id;
|
||||||
|
if (id > max_extruders) {
|
||||||
if (++s_auto_extruder_id > max_extruders)
|
// The current counter is invalid, likely due to switching the printer profiles
|
||||||
|
// to a profile with a lower number of extruders.
|
||||||
reset_auto_extruder_id();
|
reset_auto_extruder_id();
|
||||||
|
id = s_auto_extruder_id;
|
||||||
|
} else if (++s_auto_extruder_id > max_extruders) {
|
||||||
|
reset_auto_extruder_id();
|
||||||
|
}
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user