mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-13 19:25:54 +08:00
Prevent double perimeter processing while we have this idempotency workaround in place. #3850
This commit is contained in:
parent
172c324475
commit
9b77554975
@ -42,8 +42,10 @@ sub size {
|
||||
sub process {
|
||||
my ($self) = @_;
|
||||
|
||||
$self->status_cb->(20, "Generating perimeters");
|
||||
$_->make_perimeters for @{$self->objects};
|
||||
### No need to call this as we call it as part of prepare_infill()
|
||||
### until we fix the idempotency issue.
|
||||
###$self->status_cb->(20, "Generating perimeters");
|
||||
###$_->make_perimeters for @{$self->objects};
|
||||
|
||||
$self->status_cb->(70, "Infilling layers");
|
||||
$_->infill for @{$self->objects};
|
||||
|
Loading…
x
Reference in New Issue
Block a user