mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 16:25:53 +08:00
Allow bed_temperature = 0. #3505
This commit is contained in:
parent
8a82db264f
commit
1d74839373
@ -375,7 +375,7 @@ sub process_layer {
|
||||
if $temperature && $temperature != $self->config->get_at('first_layer_temperature', $extruder->id);
|
||||
}
|
||||
$gcode .= $self->_gcodegen->writer->set_bed_temperature($self->print->config->bed_temperature)
|
||||
if $self->config->has_heatbed && $self->print->config->bed_temperature && $self->print->config->bed_temperature != $self->print->config->first_layer_bed_temperature;
|
||||
if $self->config->has_heatbed && $self->print->config->first_layer_bed_temperature && $self->print->config->bed_temperature != $self->print->config->first_layer_bed_temperature;
|
||||
$self->_second_layer_things_done(1);
|
||||
}
|
||||
|
||||
|
@ -31,7 +31,7 @@ PrintConfigDef::PrintConfigDef()
|
||||
|
||||
def = this->add("bed_temperature", coInt);
|
||||
def->label = "Other layers";
|
||||
def->tooltip = "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output.";
|
||||
def->tooltip = "Bed temperature for layers after the first one.";
|
||||
def->cli = "bed-temperature=i";
|
||||
def->full_label = "Bed temperature";
|
||||
def->min = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user