Bugfix: lift was not working correctly with multiple extruders and multiple skirt layers. Also, we now ignore all lift settings except the one of the first extruder. Includes regression tests. #1332 #1338
This commit is contained in:
parent
b5907dc734
commit
10a8f479f9
4 changed files with 24 additions and 7 deletions
|
@ -73,6 +73,9 @@ sub _trigger_config {
|
|||
$self->config->set('support_material_enforce_layers', 0);
|
||||
$self->config->set('retract_layer_change', [0]); # TODO: only apply this to the spiral layers
|
||||
}
|
||||
|
||||
# force all retraction lift values to be the same
|
||||
$self->config->set('retract_lift', [ map $self->config->retract_lift->[0], @{$self->config->retract_lift} ]);
|
||||
}
|
||||
|
||||
sub _build_has_support_material {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue