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:
parent
f3adea8c65
commit
969137d1e2
|
|
@ -1516,7 +1516,8 @@ cifBloatAllFunc(
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
GeoClip(&area, &clipArea);
|
if (op->co_distance > 0)
|
||||||
|
GeoClip(&area, &clipArea);
|
||||||
DBNMPaintPlane(cifPlane, TiGetTypeExact(t), &area,
|
DBNMPaintPlane(cifPlane, TiGetTypeExact(t), &area,
|
||||||
CIFPaintTable, (PaintUndoInfo *) NULL);
|
CIFPaintTable, (PaintUndoInfo *) NULL);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue