mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-09-05 08:51:53 +02:00
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:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user