From 6f20c68c8d8d5ffeaac2dea67fc9e87e0aa1709e Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Tue, 10 Jan 2023 12:37:44 +0100 Subject: [PATCH] Follow-up to 1912b834b19968f114c9f0ed41895fb30ab5e35b Fixed a typo in SupportSpotsGenerator, where thin fills were pulled from an incorrect region. --- src/libslic3r/SupportSpotsGenerator.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libslic3r/SupportSpotsGenerator.cpp b/src/libslic3r/SupportSpotsGenerator.cpp index ecca5ac5c2..3d061269ae 100644 --- a/src/libslic3r/SupportSpotsGenerator.cpp +++ b/src/libslic3r/SupportSpotsGenerator.cpp @@ -617,7 +617,6 @@ std::tuple build_object_part_from_slice(const LayerSlice &sli } } } - const LayerRegion *thin_fill_region = layer->get_region(island.fill_region_id); for (const auto &thin_fill_idx : island.thin_fills) { add_extrusions_to_object(perimeter_region->thin_fills().entities[thin_fill_idx], perimeter_region); }