mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 09:47:58 -06:00
Fix cooling not working if !gcode_comments
The cooling markers were being passed into GCodeWriter::set_speed() as a comment which were being ignored if gcode_comments was false. Fixes: #3325
This commit is contained in:
parent
510ca9f9e2
commit
209b919fe6
3 changed files with 6 additions and 4 deletions
|
@ -273,11 +273,13 @@ GCodeWriter::toolchange(unsigned int extruder_id)
|
|||
}
|
||||
|
||||
std::string
|
||||
GCodeWriter::set_speed(double F, const std::string &comment) const
|
||||
GCodeWriter::set_speed(double F, const std::string &comment,
|
||||
const std::string &cooling_marker) const
|
||||
{
|
||||
std::ostringstream gcode;
|
||||
gcode << "G1 F" << F;
|
||||
COMMENT(comment);
|
||||
gcode << cooling_marker;
|
||||
gcode << "\n";
|
||||
return gcode.str();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue