Changed the readspice (annotation) script so that it uses the exact
label name with "port make", resolving any issues that might arise if the label overlaps another.
This commit is contained in:
parent
b0616e9f0e
commit
cd3d765f9d
|
|
@ -182,7 +182,7 @@ proc readspice {netfile} {
|
|||
if {[string tolower $testpin] == [string tolower $pin]} {
|
||||
goto $testpin
|
||||
set pinidx -1
|
||||
port make $n
|
||||
port $testpin make $n
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
@ -199,7 +199,7 @@ proc readspice {netfile} {
|
|||
} else {
|
||||
set layer [goto $pin]
|
||||
if {$layer != ""} {
|
||||
port make $n
|
||||
port $pin make $n
|
||||
incr n
|
||||
set changed true
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue