From fdc2fb551788efb698f8519c7c37e2f97d254b5d Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Mon, 5 Feb 2024 00:32:24 +0100 Subject: [PATCH] fix a regression in proc set_paths (erroneusly set file_dialog_files1) --- src/xschem.tcl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index 9d5e47c1..8ca77108 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -7644,7 +7644,7 @@ proc trace_set_paths {varname idxname op} { # when XSCHEM_LIBRARY_PATH is changed call this function to refresh and cache # new library search path. proc set_paths {} { - global XSCHEM_LIBRARY_PATH env pathlist OS add_all_windows_drives file_dialog_names1 file_dialog_files1 + global XSCHEM_LIBRARY_PATH env pathlist OS add_all_windows_drives file_dialog_names1 set pathlist {} # puts stderr "caching search paths" if { [info exists XSCHEM_LIBRARY_PATH] } { @@ -7672,7 +7672,6 @@ proc set_paths {} { } } if {$pathlist eq {}} { set pathlist [pwd] } - set file_dialog_files1 $pathlist set_initial_dirs }