From d56bf872cf63b1137e1c082ed216cddf3472fb81 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Thu, 12 Dec 2024 18:25:30 +0800 Subject: [PATCH] ENH: some fix of previous commit fix to I0c853de6b1938c7e2addbaab5a45b35daf5a32fa Change-Id: I307f99b301709fd00090dc234c054dacfda2e76a --- src/libslic3r/ExtrusionEntity.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libslic3r/ExtrusionEntity.cpp b/src/libslic3r/ExtrusionEntity.cpp index b90c50c49..69a856d47 100644 --- a/src/libslic3r/ExtrusionEntity.cpp +++ b/src/libslic3r/ExtrusionEntity.cpp @@ -68,7 +68,8 @@ void ExtrusionPath::polygons_covered_by_spacing(Polygons &out, const float scale bool ExtrusionPath::can_merge(const ExtrusionPath& other) { - return curve_degree==other.curve_degree && + return overhang_degree == other.overhang_degree && + curve_degree==other.curve_degree && mm3_per_mm == other.mm3_per_mm && width == other.width && height == other.height &&