浏览代码

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;
   }