Переглянути джерело

Remove click handler on CellManager disposed

Jeremy Tuloup 5 роки тому
батько
коміт
fb71a2b895
1 змінених файлів з 2 додано та 0 видалено
  1. 2 0
      src/handlers/cell.ts

+ 2 - 0
src/handlers/cell.ts

@@ -84,7 +84,9 @@ export class CellManager implements IDisposable {
     if (this._cellMonitor) {
       this._cellMonitor.dispose();
     }
+    this.removeGutterClick(this.activeCell);
     CellManager.clearHighlight(this.activeCell);
+    CellManager.clearGutter(this.activeCell);
     Signal.clearData(this);
     this.isDisposed = true;
   }