From 1cee992604aeebe3aad4baab42ecef9b22bf1f4e Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Fri, 20 Dec 2013 01:38:00 +0100 Subject: [PATCH] Temporarily disabled step-based slicing --- 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 6b88250b43..5c30f84a40 100644 --- a/lib/Slic3r/Print.pm +++ b/lib/Slic3r/Print.pm @@ -343,7 +343,8 @@ sub process { if (!$self->_state->done($step)) { $self->_state->set_started($step); $cb->(); - $self->_state->set_done($step); + ### Re-enable this for step-based slicing: + ### $self->_state->set_done($step); } }; my $object_step = sub { @@ -353,7 +354,8 @@ sub process { if (!$object->_state->done($step)) { $object->_state->set_started($step); $cb->($obj_idx); - $object->_state->set_done($step); + ### Re-enable this for step-based slicing: + ### $object->_state->set_done($step); } } };