diff --git a/src/bonsai/bonsai/bim/module/drawing/operator.py b/src/bonsai/bonsai/bim/module/drawing/operator.py index 4921cdee8e..d4b24a5ae7 100644 --- a/src/bonsai/bonsai/bim/module/drawing/operator.py +++ b/src/bonsai/bonsai/bim/module/drawing/operator.py @@ -1006,7 +1006,7 @@ class CreateDrawing(bpy.types.Operator): closed_polygons = shapely.polygonize(unioned_boundaries.geoms) for polygon in closed_polygons.geoms: - # Less than 1mm2 is not worth styling on sheet + # Less than 0.1mm2 is not worth styling on sheet if polygon.area < .1: continue centroid = polygon.centroid