From ff40609144eae70546110b3b61858b847872a39c Mon Sep 17 00:00:00 2001 From: EL JABIRI Tarik Date: Sun, 4 Sep 2022 10:53:58 +0100 Subject: [PATCH] fix(dxf): add dimLayers to the export. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I forgot this in the last PR 🤦‍♂️. --- web/app/sketcher/io.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/app/sketcher/io.ts b/web/app/sketcher/io.ts index f52a1edb..d4c7fc30 100644 --- a/web/app/sketcher/io.ts +++ b/web/app/sketcher/io.ts @@ -332,7 +332,11 @@ export class IO { } getWorkspaceToExport() { - return [this.viewer.layers, [this.viewer.labelLayer]]; + return [ + this.viewer.layers, + [this.viewer.labelLayer], + this.viewer.dimLayers + ]; } getLayersToExport() {