From 2d687cd0a0e5110e54b6cbbd9705c779a0b6fd3f Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 23 Jun 2013 18:21:47 +0200 Subject: [PATCH] Only combine internal infill and leave internal-solid as it is. #1248 --- lib/Slic3r/Print/Object.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Slic3r/Print/Object.pm b/lib/Slic3r/Print/Object.pm index 0df58e872..71128dd2d 100644 --- a/lib/Slic3r/Print/Object.pm +++ b/lib/Slic3r/Print/Object.pm @@ -741,8 +741,8 @@ sub combine_infill { my @layerms = map $self->layers->[$_]->regions->[$region_id], ($layer_id - ($combine[$layer_id]-1) .. $layer_id); - # process internal and internal-solid infill separately - for my $type (S_TYPE_INTERNAL, S_TYPE_INTERNALSOLID) { + # only combine internal infill + for my $type (S_TYPE_INTERNAL) { # we need to perform a multi-layer intersection, so let's split it in pairs # initialize the intersection with the candidates of the lowest layer