From 6f3bd72aeb3bdf1c0a8e3bd8e693baa26244928a Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 3 Aug 2014 11:35:18 +0200 Subject: [PATCH] Fix crash when exporting SVG with support material. #2188 --- 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 ae0965500..90a981c1f 100644 --- a/lib/Slic3r/Print.pm +++ b/lib/Slic3r/Print.pm @@ -524,7 +524,7 @@ EOF foreach my $expolygon (@current_layer_slices) { my $intersection = intersection_ex( [ map @$_, @previous_layer_slices ], - $expolygon, + [ @$expolygon ], ); @$intersection ? push @supported_slices, $expolygon