small tweaks

This commit is contained in:
SoftFever 2023-09-09 17:47:25 +08:00
parent cae9ca950f
commit 5269e3a2cd
2 changed files with 4 additions and 4 deletions

View file

@ -303,7 +303,7 @@ std::string GCodeWriter::toolchange(unsigned int extruder_id)
// return the toolchange command
// if we are running a single-extruder setup, just set the extruder and return nothing
std::ostringstream gcode;
if (this->multiple_extruders) {
if (this->multiple_extruders || (this->config.filament_diameter.values.size() > 1 && !is_bbl_printers())) {
gcode << this->toolchange_prefix() << extruder_id;
//BBS
if (GCodeWriter::full_gcode_comment)