Bugfix: extrusion width setting for support material was only affecting the path spacing but not the actual flow.

This commit is contained in:
Alessandro Ranellucci 2012-09-12 12:13:43 +02:00
parent 36796645cb
commit bb5f00cf0c
5 changed files with 6 additions and 5 deletions
lib/Slic3r/Fill

View file

@ -18,7 +18,7 @@ sub fill_surface {
my $min_spacing = scale $params{flow_spacing};
my $distance = $min_spacing / $params{density};
my $flow_spacing;
my $flow_spacing = $params{flow_spacing};
if ($params{density} == 1) {
$distance = $self->adjust_solid_spacing(
width => $bounding_box->[X2] - $bounding_box->[X1],