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.
This commit is contained in:
R. Timothy Edwards 2025-11-03 15:06:54 -05:00
parent f3adea8c65
commit 969137d1e2
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
8.3.572
8.3.573

View File

@ -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);
}