From 6a3eeef83babf43f1144c5af21dec7777f36e4a5 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci <aar@cpan.org> Date: Sat, 17 Dec 2011 19:59:31 +0100 Subject: [PATCH] Removed warnings for concentric infill. #121 --- lib/Slic3r/Fill/Concentric.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Fill/Concentric.pm b/lib/Slic3r/Fill/Concentric.pm index f530743dd..f62f9d24b 100644 --- a/lib/Slic3r/Fill/Concentric.pm +++ b/lib/Slic3r/Fill/Concentric.pm @@ -54,7 +54,7 @@ sub fill_surface { # clip the path to avoid the extruder to get exactly on the first point of the loop $path->clip_end(scale $Slic3r::nozzle_diameter / 2); - push @paths, $path->p; + push @paths, $path->p if @{$path->points}; } return {}, @paths;