File tree 2 files changed +5
-4
lines changed 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -592,7 +592,7 @@ class SignalTable {
592
592
insts : sig . num_inst ,
593
593
unit : unit ,
594
594
direction : sig . direction ,
595
- color : Raphael . hsl ( dev . hue , 1 , 0.5 )
595
+ color : Raphael . hsl ( sig . hue ? sig . hue : dev . hue , 1 , 0.5 )
596
596
} ) ;
597
597
598
598
num_dev_sigs += 1 ;
Original file line number Diff line number Diff line change @@ -198,11 +198,12 @@ class ViewManager
198
198
self . _update_links ( obj , event , repaint ) ;
199
199
break ;
200
200
case 'signal' :
201
- // only graph view might use signal properties
201
+ // chord and console views don't display live signal properties
202
202
if ( self . currentView == 'chord' || self . currentView == 'console' )
203
203
break ;
204
- if ( event != 'modified' || self . currentView == 'graph' )
205
- self . _update_signals ( obj , event , repaint ) ;
204
+ if ( event == 'modified' && ( self . currentView == 'hive' || self . currentView == 'parallel' ) )
205
+ break ;
206
+ self . _update_signals ( obj , event , repaint ) ;
206
207
break ;
207
208
case 'map' :
208
209
self . _update_maps ( obj , event , repaint ) ;
You can’t perform that action at this time.
0 commit comments