mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-24 11:22:07 +00:00
Flatpak Crash Fix when Fuzzy skin (#12611)
Co-authored-by: Ian Bassi <12130714+ianalexis@users.noreply.github.com>
This commit is contained in:
@@ -257,8 +257,9 @@ SplittedLine do_split_line(const ClipperZUtils::ZPath& path, const ExPolygons& c
|
||||
idx++;
|
||||
} else {
|
||||
if (!is_src(node.front()->front())) {
|
||||
const auto& last = result.back();
|
||||
if (result.empty() || last.get_src_index() != to_src_idx(p)) {
|
||||
if (result.empty() || result.back().get_src_index() != to_src_idx(p)) {
|
||||
//const auto& last = result.back();
|
||||
//if (result.empty() || last.get_src_index() != to_src_idx(p)) {
|
||||
result.emplace_back(to_point(p), false, idx);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user