mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-03 17:05:43 +02:00
Memory optimizations broke thin walls
This commit is contained in:
@@ -68,9 +68,12 @@ sub change_layer {
|
||||
sub extrude {
|
||||
my $self = shift;
|
||||
|
||||
return $_[0]->isa('Slic3r::ExtrusionLoop')
|
||||
? $self->extrude_loop(@_)
|
||||
: $self->extrude_path(@_);
|
||||
if ($_[0]->isa('Slic3r::ExtrusionLoop')) {
|
||||
$self->extrude_loop(@_);
|
||||
} else {
|
||||
$_[0]->deserialize;
|
||||
$self->extrude_path(@_);
|
||||
}
|
||||
}
|
||||
|
||||
sub extrude_loop {
|
||||
|
||||
Reference in New Issue
Block a user