From 969137d1e2cf6b99785cb320b882a05181cfca01 Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Mon, 3 Nov 2025 15:06:54 -0500 Subject: [PATCH] Corrected an unfortunate error from the previous commit due to missing copying one line with a conditional. The error results in "bloat-all" DRC checks reporting false positive errors. This commit fixes that error. --- VERSION | 2 +- cif/CIFgen.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 1825b228..c9e59e47 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.572 +8.3.573 diff --git a/cif/CIFgen.c b/cif/CIFgen.c index 18a5492d..7035ca03 100644 --- a/cif/CIFgen.c +++ b/cif/CIFgen.c @@ -1516,7 +1516,8 @@ cifBloatAllFunc( } else { - GeoClip(&area, &clipArea); + if (op->co_distance > 0) + GeoClip(&area, &clipArea); DBNMPaintPlane(cifPlane, TiGetTypeExact(t), &area, CIFPaintTable, (PaintUndoInfo *) NULL); }