فهرست منبع

Clear the resizing timer on dispose

Steven Silvester 8 سال پیش
والد
کامیت
0a1d7f7a3a
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      src/codemirror/widget.ts

+ 1 - 0
src/codemirror/widget.ts

@@ -47,6 +47,7 @@ class CodeMirrorWidget extends Widget {
    * Dispose of the resources held by the widget.
    */
   dispose(): void {
+    clearTimeout(this._resizing);
     this._editor = null;
     super.dispose();
   }