Skip to content

Commit

Permalink
Reverted #796 change: DXF version is back to 1006 which seems to be b…
Browse files Browse the repository at this point in the history
…etter compatible with commercial viewers. Using a later version turns out to require a lot of additional information I cannot provide without deeper insight into the DXF structure.
  • Loading branch information
klayoutmatthias committed Jul 22, 2021
1 parent df02231 commit 6ff2f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/streamers/dxf/db_plugin/dbDXFWriter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ DXFWriter::write (db::Layout &layout, tl::OutputStream &stream, const db::SaveLa
*this << 2 << endl << "HEADER" << endl;
// fake a dummy AutoCAD version (apparent required by some tools)
*this << 9 << endl << "$ACADVER" << endl;
*this << 1 << endl << "AC1014" << endl;
*this << 1 << endl << "AC1006" << endl;
*this << 0 << endl << "ENDSEC" << endl;

// layer table
Expand Down

0 comments on commit 6ff2f96

Please sign in to comment.