fix(dxf): add dimLayers to the export. (#183)

I forgot this in the last PR 🤦‍♂️.
This commit is contained in:
EL JABIRI Tarik 2022-09-22 09:46:25 +02:00 committed by GitHub
parent 05a4da0e09
commit a3349b5da4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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() {