mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Bugfix: enabling raft layers generated support for the whole model. Includes regression test. #1375
This commit is contained in:
parent
e0da81e8bf
commit
a7989e382c
3 changed files with 17 additions and 8 deletions
|
@ -787,7 +787,8 @@ sub combine_infill {
|
|||
|
||||
sub generate_support_material {
|
||||
my $self = shift;
|
||||
return unless $self->config->support_material && $self->layer_count >= 2;
|
||||
return unless ($self->config->support_material || $self->config->raft_layers > 0)
|
||||
&& $self->layer_count >= 2;
|
||||
|
||||
Slic3r::Print::SupportMaterial->new(object => $self)->generate;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue