Skip to content

Commit

Permalink
Higher brim for primer tower to make it stronger
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Sep 22, 2023
1 parent 22824f9 commit cc01931
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/PrimeTower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ void PrimeTower::addToGcode_denseInfill(LayerPlan& gcode_layer, const size_t ext
gcode_layer.addPolygonsByOptimizer(pattern.polygons, config);
gcode_layer.addLinesByOptimizer(pattern.lines, config, SpaceFillType::Lines);

if (gcode_layer.getLayerNr() == -static_cast<LayerIndex>(Raft::getTotalExtraLayers()))
// if (gcode_layer.getLayerNr() == -static_cast<LayerIndex>(Raft::getTotalExtraLayers()))
if (gcode_layer.getLayerNr() < 0 && extruder_nr == 0)
{
const ExtrusionMoves& pattern0 = pattern_per_extruder_layer0[extruder_nr];
gcode_layer.addPolygonsByOptimizer(pattern0.polygons, config);
Expand Down

0 comments on commit cc01931

Please sign in to comment.