mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-18 12:44:28 +08:00
Small change to actually infill every layer. Should fix #1783, but there's side effects in that there's no check against the nozzle size.
Proper check would be to reduce infill_every_layers to the closest integer multiple below the nozzle size. I can't find the tooltip text either to note the possible overextrusion problem.
This commit is contained in:
parent
e32635cddf
commit
86e1f2fb11
@ -221,7 +221,7 @@ sub make_fill {
|
|||||||
# layer height
|
# layer height
|
||||||
my $internal_flow = $layerm->region->flow(
|
my $internal_flow = $layerm->region->flow(
|
||||||
FLOW_ROLE_INFILL,
|
FLOW_ROLE_INFILL,
|
||||||
$layerm->layer->object->config->layer_height, # TODO: handle infill_every_layers?
|
$layerm->object->config->layer_height*$layerm->config->infill_every_layers, # TODO: handle infill_every_layers?
|
||||||
0, # no bridge
|
0, # no bridge
|
||||||
0, # no first layer
|
0, # no first layer
|
||||||
-1, # auto width
|
-1, # auto width
|
||||||
|
Loading…
x
Reference in New Issue
Block a user