From 1023461ca57cb1ac264fe5f42d24e92234f5215a Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Fri, 27 Feb 2026 12:08:35 -0500 Subject: [PATCH] Minor change to the "save .tcl" method to only paint from TECHDEPBASE, as the layers below that cannot be directly painted; this avoids putting things like "paint checkpaint" into the output, which are harmless but useless. --- database/DBio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/DBio.c b/database/DBio.c index e54bade0..9c065f2b 100644 --- a/database/DBio.c +++ b/database/DBio.c @@ -3441,7 +3441,7 @@ DBCellFindScale(cellDef) /* Find greatest common factor of all geometry. If this becomes 1, stop. */ ggcf = DBLambda[1]; - for (type = TT_PAINTBASE; type < DBNumUserLayers; type++) + for (type = TT_TECHDEPBASE; type < DBNumUserLayers; type++) { if ((pNum = DBPlane(type)) < 0) continue;