Merge pull request #3410 from lordofhyphens/fix-combine-infill

Calculate actual flow for later inclusion as a ExtrusionPath for internal flow.
This commit is contained in:
Alessandro Ranellucci 2016-11-22 18:36:09 +01:00 committed by GitHub
commit 52c68955d2

View File

@ -231,6 +231,13 @@ sub make_fill {
);
$f->spacing($internal_flow->spacing);
$using_internal_flow = 1;
# create the actual flow for internal flow that is used later.
$flow = Slic3r::Flow->new_from_spacing(
spacing => $internal_flow->spacing,
nozzle_diameter => $flow->nozzle_diameter,
layer_height => $h,
bridge => 0,
);
} else {
$f->spacing($flow->spacing);
}