From b926e0b27d19a0e7dcabeda93485e1dbf029e29d Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 11 Jun 2012 20:42:39 +0200 Subject: [PATCH] Support material lines need to be white --- lib/Slic3r/Print.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Print.pm b/lib/Slic3r/Print.pm index a34506dcda..2bab4c7a2a 100644 --- a/lib/Slic3r/Print.pm +++ b/lib/Slic3r/Print.pm @@ -398,7 +398,7 @@ EOF # supported points my $support_point = nearest_point($expolygon->contour->[0], \@supported_points); my $anchor_point = nearest_point($support_point, $expolygon->contour->[0]); - printf $fh qq{ \n}, + printf $fh qq{ \n}, map @$_, $support_point, $anchor_point; } }