Bugfix: fatal error with thin loops after recent refactoring. #562
This commit is contained in:
parent
57b134cc9c
commit
c763f5fc81
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ sub make_fill {
|
|||
);
|
||||
push @fills, map {
|
||||
$_->isa('Slic3r::Polygon')
|
||||
? Slic3r::ExtrusionLoop->pack(polygon => $_, %args)->split_at_first_point
|
||||
? (map $_->pack, Slic3r::ExtrusionLoop->new(polygon => $_, %args)->split_at_first_point)
|
||||
: Slic3r::ExtrusionPath->pack(polyline => $_, %args),
|
||||
} @{$layer->thin_fills};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue