Skip to content

Commit

Permalink
#716 fix Bridge overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
supermerill committed Nov 25, 2020
1 parent 7cab79e commit 35111e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libslic3r/Fill/Fill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ void Layer::make_fills(FillAdaptive::Octree* adaptive_fill_octree, FillAdaptive:
}

//apply bridge_overlap if needed
if (surface_fill.params.flow.bridge && surface_fill.params.density > 99 && layerm->region()->config().bridge_overlap.get_abs_value(1) != 1) {
if (surface_fill.params.flow.bridge && surface_fill.params.density > 0.99 && layerm->region()->config().bridge_overlap.get_abs_value(1) != 1) {
surface_fill.params.density *= float(layerm->region()->config().bridge_overlap.get_abs_value(1));
}

Expand Down

0 comments on commit 35111e1

Please sign in to comment.