mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Fix wrong bridge flow used for overhangs and bridge perimeters. Includes regression test. #1407
This commit is contained in:
parent
d13e7b264a
commit
7bd2ce21ca
2 changed files with 9 additions and 1 deletions
|
@ -225,7 +225,11 @@ sub extrude_loop {
|
|||
|
||||
# get overhang paths by intersecting overhangs with the loop
|
||||
push @paths,
|
||||
map { $_->role(EXTR_ROLE_OVERHANG_PERIMETER); $_ }
|
||||
map {
|
||||
$_->role(EXTR_ROLE_OVERHANG_PERIMETER);
|
||||
$_->flow_spacing($self->extruder->bridge_flow->width);
|
||||
$_
|
||||
}
|
||||
$extrusion_path->intersect_expolygons($self->_layer_overhangs_pp);
|
||||
|
||||
# reapply the nearest point search for starting point
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue