From 02c0f3658fd8d405627af5f408409683f1e81f20 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sat, 2 Feb 2013 15:37:09 +0100 Subject: [PATCH] Use 50% density for support base flange --- lib/Slic3r/Print/Object.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Print/Object.pm b/lib/Slic3r/Print/Object.pm index f628da2adc..f5ea07a922 100644 --- a/lib/Slic3r/Print/Object.pm +++ b/lib/Slic3r/Print/Object.pm @@ -719,7 +719,7 @@ sub generate_support_material { foreach my $expolygon (@$islands) { my @paths = $filler->fill_surface( Slic3r::Surface->new(expolygon => $expolygon), - density => 1, + density => 0.5, flow_spacing => $self->print->first_layer_support_material_flow->spacing, ); my $params = shift @paths;