Skip to content

Commit

Permalink
fix 7c92519
Browse files Browse the repository at this point in the history
  • Loading branch information
supermerill committed Apr 25, 2023
1 parent 7c92519 commit 1a5b72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libslic3r/GCode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4276,7 +4276,7 @@ std::string GCode::extrude_loop(const ExtrusionLoop &original_loop, const std::s
ExtrusionPaths& building_paths = loop_to_seam.paths;
//direction is now set, make the path unreversable
for (ExtrusionPath& path : building_paths) {
assert(!path.can_reverse() || path.role() == erGapFill);
assert(!path.can_reverse() || !is_perimeter(path.role())); //just ensure the perimeter have their direction enforced.
path.set_can_reverse(false);
}
if (m_enable_loop_clipping && m_writer.tool_is_extruder()) {
Expand Down

0 comments on commit 1a5b72e

Please sign in to comment.