Skip to content

Commit 4426c45

Browse files
committed
Merge remote-tracking branch 'origin/CURA-11978_retract-and-unretract-in-a-travel' into CURA-11978_retract-and-unretract-in-a-travel
2 parents c77c30c + ea67713 commit 4426c45

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

src/LayerPlan.cpp

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,14 @@ GCodePath* LayerPlan::getLatestPathWithConfig(
5858
{
5959
return &paths.back();
6060
}
61-
paths.emplace_back(
62-
GCodePath{ .z_offset = z_offset,
63-
.config = config,
64-
.mesh = current_mesh_,
65-
.space_fill_type = space_fill_type,
66-
.flow = flow,
67-
.width_factor = width_factor,
68-
.spiralize = spiralize,
69-
.speed_factor = speed_factor });
61+
paths.emplace_back(GCodePath{ .z_offset = z_offset,
62+
.config = config,
63+
.mesh = current_mesh_,
64+
.space_fill_type = space_fill_type,
65+
.flow = flow,
66+
.width_factor = width_factor,
67+
.spiralize = spiralize,
68+
.speed_factor = speed_factor });
7069

7170
GCodePath* ret = &paths.back();
7271
ret->skip_agressive_merge_hint = mode_skip_agressive_merge_;

0 commit comments

Comments
 (0)