From d8dc2beb5a0874816005c1bc601564be7b555846 Mon Sep 17 00:00:00 2001 From: thecampbells384 Date: Fri, 5 May 2023 16:20:40 -0700 Subject: [PATCH] should avoid calculating comb boundary if mesh is infill OR anti_overhang, not if mesh is infill AND anti_overhang. --- src/LayerPlan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LayerPlan.cpp b/src/LayerPlan.cpp index 43def5f5db..c390457cbc 100644 --- a/src/LayerPlan.cpp +++ b/src/LayerPlan.cpp @@ -215,7 +215,7 @@ Polygons LayerPlan::computeCombBoundary(const CombBoundary boundary_type) { const SliceLayer& layer = mesh.layers[static_cast(layer_nr)]; // don't process infill_mesh or anti_overhang_mesh - if (mesh.settings.get("infill_mesh") && mesh.settings.get("anti_overhang_mesh")) + if (mesh.settings.get("infill_mesh") || mesh.settings.get("anti_overhang_mesh")) { continue; }