From ed8a6dbe110d7b18ea3f4c66fccf2486966da3a9 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Sun, 16 Mar 2025 00:02:12 +0100 Subject: [PATCH] little optimization in insert_symbol --- src/xschem.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index a0bbe721..1b05c3b5 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -4911,7 +4911,7 @@ proc insert_symbol_filelist {paths {maxdepth -1}} { set err [catch {regexp $new_symbol_browser_ext $i} type] if {!$err && $type} { - set fname [rel_sym_path $i $paths] + set fname [file tail $i] lappend filelist $fname lappend insert_symbol(fullpathlist) $i }