Skip to content

Commit 237e413

Browse files
authored
[CURA-12478] Fix early-out also skipping support-meshes. (#2212)
2 parents e00efa2 + 9a7cc3c commit 237e413

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/support.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,8 @@ void AreaSupport::generateSupportAreasForMesh(
10141014
return;
10151015
}
10161016

1017-
if (ranges::all_of(
1017+
if ((! mesh.settings.get<bool>("support_mesh"))
1018+
&& ranges::all_of(
10181019
mesh.overhang_areas,
10191020
[](const Shape& overhang_area)
10201021
{

0 commit comments

Comments
 (0)