Always set bed temperature after first layer if first layer temperature is set. #427
This commit is contained in:
parent
3e94add8a8
commit
c0c84d13b8
1 changed files with 1 additions and 1 deletions
|
@ -494,7 +494,7 @@ sub write_gcode {
|
|||
$gcode .= $extruder->set_temperature($Slic3r::temperature)
|
||||
if $Slic3r::temperature && $Slic3r::temperature != $Slic3r::first_layer_temperature;
|
||||
$gcode .= $extruder->set_bed_temperature($Slic3r::bed_temperature)
|
||||
if $Slic3r::bed_temperature && $Slic3r::bed_temperature != $Slic3r::first_layer_bed_temperature;
|
||||
if $Slic3r::first_layer_bed_temperature && $Slic3r::bed_temperature != $Slic3r::first_layer_bed_temperature;
|
||||
}
|
||||
|
||||
# go to layer (just use the first one, we only need Z from it)
|
||||
|
|
Loading…
Reference in a new issue