mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-16 02:25:53 +08:00
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:
commit
52c68955d2
@ -231,6 +231,13 @@ sub make_fill {
|
|||||||
);
|
);
|
||||||
$f->spacing($internal_flow->spacing);
|
$f->spacing($internal_flow->spacing);
|
||||||
$using_internal_flow = 1;
|
$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 {
|
} else {
|
||||||
$f->spacing($flow->spacing);
|
$f->spacing($flow->spacing);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user