bug fix - external extrusions were cleaned out before use
This commit is contained in:
parent
0a8f70c1ba
commit
619309a1a4
1 changed files with 2 additions and 3 deletions
|
@ -562,8 +562,7 @@ Issues check_object_stability(const PrintObject *po, const Params ¶ms) {
|
||||||
std::remove_if(layer_lines.begin(), layer_lines.end(), [](const ExtrusionLine &line) {
|
std::remove_if(layer_lines.begin(), layer_lines.end(), [](const ExtrusionLine &line) {
|
||||||
return !line.external_perimeter;
|
return !line.external_perimeter;
|
||||||
});
|
});
|
||||||
layer_lines = std::vector<ExtrusionLine>();
|
external_lines = LinesDistancer(layer_lines);
|
||||||
LinesDistancer external_lines(layer_lines);
|
|
||||||
layer_lines.clear();
|
layer_lines.clear();
|
||||||
prev_layer_grid = layer_grid;
|
prev_layer_grid = layer_grid;
|
||||||
}
|
}
|
||||||
|
@ -605,8 +604,8 @@ full_search(const PrintObject *po, const Params ¶ms) {
|
||||||
debug_export(issues, "issues");
|
debug_export(issues, "issues");
|
||||||
#endif
|
#endif
|
||||||
return issues;
|
return issues;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} //SupportableIssues End
|
} //SupportableIssues End
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue