Minor change to the "save <file>.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.
This commit is contained in:
R. Timothy Edwards 2026-02-27 12:08:35 -05:00
parent 197763e46e
commit 1023461ca5
1 changed files with 1 additions and 1 deletions

View File

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