From cd3d765f9dd7a255a25dba1588cab110266d3cb7 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Thu, 12 Nov 2020 13:59:22 -0500 Subject: [PATCH] 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. --- tcltk/readspice.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tcltk/readspice.tcl b/tcltk/readspice.tcl index 333534f4..45f1a359 100644 --- a/tcltk/readspice.tcl +++ b/tcltk/readspice.tcl @@ -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 }