From 362ddec743e1f9b29f742fcfed028f4f28a92021 Mon Sep 17 00:00:00 2001 From: Kiss Lorand <50251547+kisslorand@users.noreply.github.com> Date: Sat, 4 Apr 2026 22:56:42 +0300 Subject: [PATCH] Fix overhang reverse threshold being ignored (#13061) --- src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp b/src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp index d73513622b..fb9ea23822 100644 --- a/src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp +++ b/src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp @@ -196,7 +196,7 @@ void group_region_by_fuzzify(PerimeterGenerator& g) surfaces.push_back(&surface); } - if (cfg.type != FuzzySkinType::None) { + if (cfg.type != FuzzySkinType::None && cfg.type != FuzzySkinType::Disabled_fuzzy) { g.has_fuzzy_skin = true; if (cfg.type != FuzzySkinType::External) { g.has_fuzzy_hole = true;