From 55a4e95b940a41e3f6f296a958746ed0b6089815 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Thu, 5 Jul 2018 14:49:44 -0500 Subject: [PATCH] Oops, missed a line when editing to use label_printed_objects --- lib/Slic3r/Print/GCode.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Print/GCode.pm b/lib/Slic3r/Print/GCode.pm index c5a9457f3..84c5e6f75 100644 --- a/lib/Slic3r/Print/GCode.pm +++ b/lib/Slic3r/Print/GCode.pm @@ -675,7 +675,7 @@ sub process_layer { } } } - if ($self->config->gcode_comments) { + if ($self->config->label_printed_objects) { $gcode .= "; stop printing object " . $object->model_object()->name . " id:" . $obj_idx . " copy " . $copy_idx . "\n"; } $copy_idx = $copy_idx + 1;