From 59cd027a688907759abfda56742a351a96bf18f2 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Fri, 13 Jan 2012 18:24:08 +0100 Subject: [PATCH] Temporarily disable small gap filling as it requires a fix not to slow down everything --- lib/Slic3r/Perimeter.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Perimeter.pm b/lib/Slic3r/Perimeter.pm index 2b64f83a88..3c52eb9f0c 100644 --- a/lib/Slic3r/Perimeter.pm +++ b/lib/Slic3r/Perimeter.pm @@ -64,7 +64,7 @@ sub make_perimeter { push @{ $layer->thin_fills }, grep $_, map $_->medial_axis(scale $Slic3r::flow_width), - @$small_gaps; + @$small_gaps if 0; } }