File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -190,18 +190,18 @@ class ViewManager
190
190
switch ( type ) {
191
191
case 'device' :
192
192
// only graph view might use device properties
193
- if ( event != 'modified' || this . currentView == 'graph' )
193
+ if ( event != 'modified' || self . currentView == 'graph' )
194
194
self . _update_devices ( obj , event , repaint ) ;
195
195
break ;
196
196
case 'link' :
197
- if ( event != 'modified' && this . currentView == 'chord' )
197
+ if ( event != 'modified' && self . currentView == 'chord' )
198
198
self . _update_links ( obj , event , repaint ) ;
199
199
break ;
200
200
case 'signal' :
201
201
// only graph view might use signal properties
202
- if ( this . currentView == 'chord' || this . currentView == 'console' )
202
+ if ( self . currentView == 'chord' || self . currentView == 'console' )
203
203
break ;
204
- if ( event != 'modified' || this . currentView == 'graph' )
204
+ if ( event != 'modified' || self . currentView == 'graph' )
205
205
self . _update_signals ( obj , event , repaint ) ;
206
206
break ;
207
207
case 'map' :
You can’t perform that action at this time.
0 commit comments