From 1ef4d006a0e29ce51174a1c18189ec6ca46ca6ba Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Fri, 18 Nov 2011 09:54:28 +0100 Subject: [PATCH] Treating "reverse bridges" as bridges should not change the way they're infilled or the chosen flow width --- lib/Slic3r/Fill.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Slic3r/Fill.pm b/lib/Slic3r/Fill.pm index 8c13fcb65..271d1bb7f 100644 --- a/lib/Slic3r/Fill.pm +++ b/lib/Slic3r/Fill.pm @@ -66,7 +66,8 @@ sub make_fill { # force 100% density and rectilinear fill for external surfaces if ($surface->surface_type ne 'internal') { - my $is_bridge = $surface->isa('Slic3r::Surface::Bridge'); + my $is_bridge = $surface->isa('Slic3r::Surface::Bridge') + && $surface->surface_type eq 'bottom'; $density = 1; $filler = $is_bridge ? 'rectilinear' : $Slic3r::solid_fill_pattern; $flow_width = $Slic3r::nozzle_diameter if $is_bridge;