Corrected an error that can prevent capacitances to substrate from

being output if the substrate node is declared as a port.
This commit is contained in:
Tim Edwards 2023-11-14 20:10:57 -05:00
parent 11080465ad
commit d09b0e8c51
2 changed files with 4 additions and 1 deletions

View File

@ -1 +1 @@
8.3.447
8.3.448

View File

@ -188,7 +188,10 @@ efBuildNode(def, isSubsnode, isDevSubsnode, isExtNode, nodeName, nodeCap,
newnode->efnode_flags |= EF_SUBS_NODE;
if (isSubsnode == TRUE)
{
newnode->efnode_flags |= EF_GLOB_SUBS_NODE;
EFCompat = FALSE;
}
/* The node is a duplicate port name at a different location. */
/* If EFSaveLocs is TRUE, then save the layer and position in */