From 57890587752a7d588d18e23c7e4e3911c6cb3d19 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Tue, 26 Mar 2024 17:49:35 +0100 Subject: [PATCH] do not auto highlight nets if operating point raw data is loaded (auto_hilight_graph_nodes=1) --- src/draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/draw.c b/src/draw.c index 29de0296..f6159f05 100644 --- a/src/draw.c +++ b/src/draw.c @@ -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); }