From 97af6f6f39cc62dba5074cd7a9423c3ee0745a34 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Thu, 1 Sep 2022 11:53:14 +0200 Subject: [PATCH] WIP TreeSupports: Fixed support blockers. --- src/libslic3r/TreeSupport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/TreeSupport.cpp b/src/libslic3r/TreeSupport.cpp index 513fff97a3..2a31a0e689 100644 --- a/src/libslic3r/TreeSupport.cpp +++ b/src/libslic3r/TreeSupport.cpp @@ -307,7 +307,7 @@ void TreeSupport::showError(std::string message, bool critical) raw_overhangs_calculated = true; } if (! (enforced_layer || blockers_layers.empty() || blockers_layers[layer_id].empty())) - overhangs = diff(overhangs, blockers_layers[layer_id]); + overhangs = diff(overhangs, blockers_layers[layer_id], ApplySafetyOffset::Yes); } if (! enforcers_layers.empty() && ! enforcers_layers[layer_id].empty()) // Has some support enforcers at this layer, apply them to the overhangs, don't apply the support threshold angle.