Fix typo in previous commit and in config options. #234
This commit is contained in:
parent
0520d1645b
commit
f0e434f8c1
2 changed files with 3 additions and 1 deletions
|
@ -93,7 +93,7 @@ our $Options = {
|
|||
},
|
||||
'first_layer_temperature' => {
|
||||
label => 'First layer temperature (°C)',
|
||||
cli => 'fisrt-layer-temperature=i',
|
||||
cli => 'first-layer-temperature=i',
|
||||
type => 'i',
|
||||
},
|
||||
'temperature' => {
|
||||
|
|
|
@ -641,6 +641,8 @@ sub export_gcode {
|
|||
$layer_gcode .= $extruder->extrude_loop($_, 'skirt') for @{ $layer->skirts };
|
||||
|
||||
for (my $i = 0; $i <= $#{$self->copies}; $i++) {
|
||||
my $copy = $self->copies->[$i];
|
||||
|
||||
# retract explicitely because changing the shift_[xy] properties below
|
||||
# won't always trigger the automatic retraction
|
||||
$layer_gcode .= $extruder->retract;
|
||||
|
|
Loading…
Reference in a new issue