mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +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() {
|
getWorkspaceToExport() {
|
||||||
return [this.viewer.layers, [this.viewer.labelLayer]];
|
return [
|
||||||
|
this.viewer.layers,
|
||||||
|
[this.viewer.labelLayer],
|
||||||
|
this.viewer.dimLayers
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
getLayersToExport() {
|
getLayersToExport() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue