Calculate actual flow for later inclusion as a ExtrusionPath, using the correct layer height for the surface.

This commit is contained in:
Joseph Lenox 2016-07-10 19:27:57 -05:00
parent 34f1853dd0
commit 7faa0fbfb5

View File

@ -229,6 +229,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);
}