File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -190,18 +190,18 @@ class ViewManager
190190 switch ( type ) {
191191 case 'device' :
192192 // only graph view might use device properties
193- if ( event != 'modified' || this . currentView == 'graph' )
193+ if ( event != 'modified' || self . currentView == 'graph' )
194194 self . _update_devices ( obj , event , repaint ) ;
195195 break ;
196196 case 'link' :
197- if ( event != 'modified' && this . currentView == 'chord' )
197+ if ( event != 'modified' && self . currentView == 'chord' )
198198 self . _update_links ( obj , event , repaint ) ;
199199 break ;
200200 case 'signal' :
201201 // only graph view might use signal properties
202- if ( this . currentView == 'chord' || this . currentView == 'console' )
202+ if ( self . currentView == 'chord' || self . currentView == 'console' )
203203 break ;
204- if ( event != 'modified' || this . currentView == 'graph' )
204+ if ( event != 'modified' || self . currentView == 'graph' )
205205 self . _update_signals ( obj , event , repaint ) ;
206206 break ;
207207 case 'map' :
You can’t perform that action at this time.
0 commit comments