mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 08:25:19 +01:00
fix(dxf): add dimLayers to the export. (#183)
I forgot this in the last PR 🤦♂️.
This commit is contained in:
parent
05a4da0e09
commit
a3349b5da4
1 changed files with 5 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue