Prevent double perimeter processing while we have this idempotency workaround in place. #3850

This commit is contained in:
Alessandro Ranellucci 2017-05-16 22:30:17 +02:00
parent 172c324475
commit 9b77554975

View File

@ -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};