Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/CURA-12352_different-minimum-lay…
Browse files Browse the repository at this point in the history
…er-time-for-layers-that-contain-overhangs' into CURA-12352_different-minimum-layer-time-for-layers-that-contain-overhangs
  • Loading branch information
wawanbreton committed Jan 9, 2025
2 parents 9de740a + ca2211f commit 7302cea
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions src/LayerPlan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,14 @@ GCodePath* LayerPlan::getLatestPathWithConfig(
{
return &paths.back();
}
paths.emplace_back(
GCodePath{ .z_offset = z_offset,
.config = config,
.mesh = current_mesh_,
.space_fill_type = space_fill_type,
.flow = flow,
.width_factor = width_factor,
.spiralize = spiralize,
.speed_factor = speed_factor });
paths.emplace_back(GCodePath{ .z_offset = z_offset,
.config = config,
.mesh = current_mesh_,
.space_fill_type = space_fill_type,
.flow = flow,
.width_factor = width_factor,
.spiralize = spiralize,
.speed_factor = speed_factor });

GCodePath* ret = &paths.back();
ret->skip_agressive_merge_hint = mode_skip_agressive_merge_;
Expand Down

0 comments on commit 7302cea

Please sign in to comment.