Procházet zdrojové kódy

Clear the resizing timer on dispose

Steven Silvester před 8 roky
rodič
revize
0a1d7f7a3a
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  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();
   }