From 569e737ae1c66015586b7d7bfb6fbd329bac249a Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 13 Dec 2011 17:36:03 +0100 Subject: [PATCH] Only connect infill edges when not doing solid surfaces --- lib/Slic3r/Fill/Rectilinear.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Fill/Rectilinear.pm b/lib/Slic3r/Fill/Rectilinear.pm index 5607f09d08..b155244540 100644 --- a/lib/Slic3r/Fill/Rectilinear.pm +++ b/lib/Slic3r/Fill/Rectilinear.pm @@ -45,7 +45,7 @@ sub fill_surface { } # connect lines - { + if ($params{density} < 1) { my $collection = Slic3r::ExtrusionPath::Collection->new( paths => [ map Slic3r::ExtrusionPath->cast([ @$_ ], role => 'bogus'), @paths ], );