mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 14:44:19 -06:00
Respect perimeter/infill order when multiple extruders are configured but only one is used
This commit is contained in:
parent
4fdcd18801
commit
fd2a5e894a
1 changed files with 3 additions and 2 deletions
|
@ -927,9 +927,10 @@ sub write_gcode {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
# give priority to infill if we were already using its extruder
|
# give priority to infill if we were already using its extruder and it wouldn't
|
||||||
|
# be good for perimeters
|
||||||
if ($Slic3r::Config->infill_first
|
if ($Slic3r::Config->infill_first
|
||||||
|| ($gcodegen->multiple_extruders && $region->extruders->{infill} eq $gcodegen->extruder)) {
|
|| ($gcodegen->multiple_extruders && $region->extruders->{infill} eq $gcodegen->extruder) && $region->extruders->{infill} ne $region->extruders->{perimeter}) {
|
||||||
$extrude_fills->();
|
$extrude_fills->();
|
||||||
$extrude_perimeters->();
|
$extrude_perimeters->();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue