Skip to content

Commit

Permalink
FIX: SSDA cause arachne print fail
Browse files Browse the repository at this point in the history
Jira: none

Signed-off-by: qing.zhang <qing.zhang@bambulab.com>
Change-Id: Ibf75f66db1edaad7cb1b45f999751143442869fc
  • Loading branch information
QingZhangBambu authored and lanewei120 committed Aug 28, 2024
1 parent 5bf2448 commit 819de9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/libslic3r/GCode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4569,8 +4569,10 @@ ExtrusionPaths GCode::merge_same_speed_paths(const ExtrusionPaths &paths)

// 100% overhang speed will not to set smooth speed
if (path.role() == erOverhangPerimeter) {
if (!merge_path.empty())
if (!merge_path.empty()) {
output_paths.push_back(std::move(merge_path));
merge_path.polyline.clear();
}
output_paths.push_back(std::move(path));
merge_start = path_idx + 1;
continue;
Expand Down

0 comments on commit 819de9c

Please sign in to comment.