Skip to content

Commit

Permalink
Merge pull request #386 from DomCR/MLeaderStyle-DwgWriter-ignore
Browse files Browse the repository at this point in the history
ignore MultiLeaderStyle
  • Loading branch information
DomCR authored Jul 22, 2024
2 parents 5bc59d7 + 831eb02 commit bf35090
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ACadSharp/IO/DWG/DwgStreamWriters/DwgObjectWriter.Objects.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ private void writeObject(CadObject obj)
{
case Material:
case MultiLeaderAnnotContext:
case MultiLeaderStyle:
case SortEntitiesTable:
case VisualStyle:
case XRecord:
Expand Down Expand Up @@ -337,6 +338,9 @@ private void writeMLineStyle(MLineStyle mlineStyle)

private void writeMultiLeaderStyle(MultiLeaderStyle mLeaderStyle)
{
//TODO: Remove this line when MultiLeaderStyle is fixed for writing
return;

if (!R2010Plus)
{
return;
Expand Down

0 comments on commit bf35090

Please sign in to comment.