From 369b99c712c072383a246aa0921ef7b784b055ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20D=C4=99bski?= Date: Wed, 4 Nov 2015 13:55:08 +0100 Subject: [PATCH] Fix incorrect comments to temperature-setting gcode --- xs/src/libslic3r/GCodeWriter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xs/src/libslic3r/GCodeWriter.cpp b/xs/src/libslic3r/GCodeWriter.cpp index 801e0ebd4..10675618d 100644 --- a/xs/src/libslic3r/GCodeWriter.cpp +++ b/xs/src/libslic3r/GCodeWriter.cpp @@ -84,7 +84,7 @@ GCodeWriter::set_temperature(unsigned int temperature, bool wait, int tool) std::string code, comment; if (wait && FLAVOR_IS_NOT(gcfTeacup)) { code = "M109"; - comment = "wait for temperature to be reached"; + comment = "set temperature and wait for it to be reached"; } else { code = "M104"; comment = "set temperature"; @@ -119,10 +119,10 @@ GCodeWriter::set_bed_temperature(unsigned int temperature, bool wait) } else { code = "M190"; } - comment = "set bed temperature"; + comment = "set bed temperature and wait for it to be reached"; } else { code = "M140"; - comment = "wait for bed temperature to be reached"; + comment = "set bed temperature"; } std::ostringstream gcode;