From 9b7755497599bbd8a09750a6c31a7b8cd9ec31f5 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 16 May 2017 22:30:17 +0200 Subject: [PATCH] Prevent double perimeter processing while we have this idempotency workaround in place. #3850 --- lib/Slic3r/Print.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/Slic3r/Print.pm b/lib/Slic3r/Print.pm index 372a0c35c..586bd8a8d 100644 --- a/lib/Slic3r/Print.pm +++ b/lib/Slic3r/Print.pm @@ -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};