Fix regression causing retraction restarts to ignore extrusion_axis. Includes regression test. #1547

This commit is contained in:
Alessandro Ranellucci 2013-11-24 12:37:36 +01:00
parent 97c65bac90
commit 5217bc370a
2 changed files with 8 additions and 2 deletions

View file

@ -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;