mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 19:12:38 -07:00
Fix wrong bridge flow used for overhangs and bridge perimeters. Includes regression test. #1407
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user