Browse Source

remove value changed signal

Daowei Yang 6 years ago
parent
commit
d68c131cff
1 changed files with 1 additions and 2 deletions
  1. 1 2
      packages/inspector/src/handler.ts

+ 1 - 2
packages/inspector/src/handler.ts

@@ -72,8 +72,7 @@ export class InspectionHandler implements IDisposable, IInspector.IInspectable {
       // the active cell
       this.onEditorChange();
       let signals: ISignal<any, any>[] = [
-        editor.model.selections.changed,
-        editor.model.value.changed
+        editor.model.selections.changed
       ];
       this._monitors = signals.map(s => {
         let m = new ActivityMonitor({ signal: s, timeout: 250 });