mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-21 20:18:17 +08:00
Bugfix: bed temperature wasn't being set after the first layer when first layer bed temperature was set to zero. #760
This commit is contained in:
parent
50f6909475
commit
31c2e50fc6
@ -697,7 +697,7 @@ sub write_gcode {
|
|||||||
if $self->extruders->[$t]->temperature && $self->extruders->[$t]->temperature != $self->extruders->[$t]->first_layer_temperature;
|
if $self->extruders->[$t]->temperature && $self->extruders->[$t]->temperature != $self->extruders->[$t]->first_layer_temperature;
|
||||||
}
|
}
|
||||||
$gcode .= $gcodegen->set_bed_temperature($Slic3r::Config->bed_temperature)
|
$gcode .= $gcodegen->set_bed_temperature($Slic3r::Config->bed_temperature)
|
||||||
if $Slic3r::Config->first_layer_bed_temperature && $Slic3r::Config->bed_temperature != $Slic3r::Config->first_layer_bed_temperature;
|
if $Slic3r::Config->bed_temperature && $Slic3r::Config->bed_temperature != $Slic3r::Config->first_layer_bed_temperature;
|
||||||
}
|
}
|
||||||
|
|
||||||
# go to layer (just use the first one, we only need Z from it)
|
# go to layer (just use the first one, we only need Z from it)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user