From 99a01300c5de26e84632f596e46b7a89781ad09a Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Tue, 20 Feb 2024 11:05:52 +0100 Subject: [PATCH] fix automatic sending bussed signals to graph (Alt-g) --- src/xschem.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index 817c375b..1e9863b6 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -2168,7 +2168,7 @@ proc graph_add_nodes_from_list {nodelist} { set first 1 } if {$change_done && $graph_bus} { - set sel "[string toupper $busname],${sel}\n" + set sel "[string toupper $busname];${sel}\n" } else { set sel "${sel}\n" } @@ -2200,7 +2200,7 @@ proc graph_add_nodes_from_list {nodelist} { set first 1 } if {$change_done && $graph_bus} { - set sel "[string toupper $busname],${sel}\n" + set sel "[string toupper $busname];${sel}\n" } else { set sel "${sel}\n" }