mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 22:54:08 -06:00
Fix regression causing retraction restarts to ignore extrusion_axis. Includes regression test. #1547
This commit is contained in:
parent
97c65bac90
commit
5217bc370a
2 changed files with 8 additions and 2 deletions
|
@ -546,7 +546,8 @@ sub unretract {
|
|||
$gcode .= "G11 ; unretract\n";
|
||||
} elsif ($self->config->extrusion_axis) {
|
||||
# use G1 instead of G0 because G0 will blend the restart with the previous travel move
|
||||
$gcode .= sprintf "G1 E%.5f F%.3f",
|
||||
$gcode .= sprintf "G1 %s%.5f F%.3f",
|
||||
$self->config->extrusion_axis,
|
||||
$self->extruder->extrude($to_unretract),
|
||||
$self->extruder->retract_speed_mm_min;
|
||||
$gcode .= " ; compensate retraction" if $self->config->gcode_comments;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue