Always set bed temperature after first layer if first layer temperature is set. #427

degen-loop-screen
Alessandro Ranellucci 2012-06-11 13:43:23 +02:00
parent 3e94add8a8
commit c0c84d13b8
1 changed files with 1 additions and 1 deletions

View File

@ -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)