From 31113b8a78900d352818f9e92a7b317d1524241d Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Fri, 2 May 2014 13:31:41 +0200 Subject: [PATCH] Typo in 0a88492 --- lib/Slic3r/Layer/BridgeDetector.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Layer/BridgeDetector.pm b/lib/Slic3r/Layer/BridgeDetector.pm index c616909d4..f27cda3b2 100644 --- a/lib/Slic3r/Layer/BridgeDetector.pm +++ b/lib/Slic3r/Layer/BridgeDetector.pm @@ -247,7 +247,7 @@ sub unsupported_edges { # split into individual segments and filter out edges parallel to the bridging angle @$unsupported = map $_->as_polyline, - grep $_->parallel_to($angle), + grep !$_->parallel_to($angle), map @{$_->lines}, @$unsupported;