1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-19 09:24:27 +00:00

Comments are now disabled by default, new --gcode-comments option to enable them

This commit is contained in:
Alessandro Ranellucci
2011-12-14 19:49:21 +01:00
parent 3d213069a6
commit d346bc02cc
5 changed files with 13 additions and 5 deletions
+1 -1
View File
@@ -292,7 +292,7 @@ sub _Gx {
$gcode .= sprintf " %s%.5f", $Slic3r::extrusion_axis, $self->extrusion_distance;
}
$gcode .= sprintf " ; %s", $comment if $comment;
$gcode .= sprintf " ; %s", $comment if $comment && $Slic3r::gcode_comments;
return "$gcode\n";
}