From cec2172225f2543b8ba66c929a849dfd5e4000e9 Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Fri, 8 Jul 2022 11:49:19 +0200 Subject: [PATCH] [Editor] Remove useless and faulty code when destroying the global manager --- src/display/editor/tools.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/display/editor/tools.js b/src/display/editor/tools.js index f0614e40e..22f92ec9e 100644 --- a/src/display/editor/tools.js +++ b/src/display/editor/tools.js @@ -435,9 +435,6 @@ class AnnotationEditorUIManager { layer.destroy(); } this.#allLayers.clear(); - for (const editor of this.#allEditors.values()) { - editor.destroy(); - } this.#allEditors.clear(); this.#activeEditor = null; this.#clipboardManager.destroy();