Bugfix: extrusion distance wasn't reset at print start, causing a possible huge retraction.

degen-loop-screen
Alessandro Ranellucci 2011-10-17 21:38:41 +02:00
parent 5090ae561c
commit 54cc6216a1
1 changed files with 1 additions and 0 deletions

View File

@ -329,6 +329,7 @@ sub export_gcode {
print $fh "$Slic3r::start_gcode\n";
print $fh "G90 ; use absolute coordinates\n";
print $fh "G21 ; set units to millimeters\n";
print $fh "G92 E0 ; reset extrusion distance\n";
if ($Slic3r::use_relative_e_distances) {
print $fh "M83 ; use relative distances for extrusion\n";
} else {