do not auto highlight nets if operating point raw data is loaded (auto_hilight_graph_nodes=1)

This commit is contained in:
stefan schippers 2024-03-26 17:49:35 +01:00
parent fc19e646c7
commit 5789058775
1 changed files with 1 additions and 1 deletions

View File

@ -3634,7 +3634,7 @@ void draw_graph(int i, const int flags, Graph_ctx *gr, void *ct)
}
}
if(raw && raw->values && tclgetboolvar("auto_hilight_graph_nodes")) {
if(!expression) {
if(!expression && raw->sim_type && strcmp(raw->sim_type, "op") ) {
if(!bus_msb) hilight_graph_node(express, wc);
else hilight_graph_node(bus_msb, wc);
}