Skip to content

Commit

Permalink
fix(dxf): add dimLayers to the export. (xibyte#183)
Browse files Browse the repository at this point in the history
I forgot this in the last PR 🤦‍♂️.
  • Loading branch information
tarikjabiri authored Sep 22, 2022
1 parent 05a4da0 commit a3349b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion web/app/sketcher/io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit a3349b5

Please sign in to comment.