Corrected invalid logic in the interpetation of (cif/gds) label
options "text", "port", and "noport" in the techfile. The incorrect interpretation was preventing backwards compatibility, such that ports would not be output on GDS layers if the "port" option was not used.
This commit is contained in:
parent
648b9e54e6
commit
66603cdb53
|
|
@ -889,9 +889,9 @@ CIFTechLine(sectionName, argc, argv)
|
|||
{
|
||||
if (TTMaskHasType(&mask, i))
|
||||
{
|
||||
if (noPort == FALSE)
|
||||
if (portOnly != TRUE)
|
||||
CIFCurStyle->cs_labelLayer[i] = CIFCurStyle->cs_nLayers-1;
|
||||
if (portOnly == TRUE)
|
||||
if (noPort != TRUE)
|
||||
CIFCurStyle->cs_portLayer[i] = CIFCurStyle->cs_nLayers-1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue