From c2a3c482286c67f7322ea4d631a59654cbdbe754 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Mon, 26 May 2025 00:09:23 +0200 Subject: [PATCH] make raw file selector invoked from graphdialog always on top of it (use -parent option) --- src/xschem.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index 8f1ffb8a..29d704ed 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -8731,7 +8731,7 @@ proc select_raw {} { } if {[info exists has_x]} { set filename [tk_getOpenFile -title "Select file" -multiple 0 -initialdir $netlist_dir \ - -initialfile [file tail $filename] -filetypes $types] + -parent .graphdialog -initialfile [file tail $filename] -filetypes $types] } return $filename }