Updated internal bridging flow change and reverted bridge PR (#2943)

Updated internal bridging flow change & reverted bridge PR
This commit is contained in:
Ioannis Giannakas 2023-12-01 15:50:58 +00:00 committed by GitHub
parent 6ba1e6d6ae
commit ae9a2d5929
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -4715,6 +4715,8 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description,
_mm3_per_mm *= m_config.top_solid_infill_flow_ratio;
else if (path.role() == erBottomSurface)
_mm3_per_mm *= m_config.bottom_solid_infill_flow_ratio;
else if (path.role() == erInternalBridgeInfill)
_mm3_per_mm *= m_config.internal_bridge_flow;
double e_per_mm = m_writer.extruder()->e_per_mm3() * _mm3_per_mm;