Fix duplicate bend-note rendering in CAD converter

This commit is contained in:
aj
2026-09-11 21:48:13 -04:00
parent bcb85805d9
commit d99e47f241
8 changed files with 72 additions and 2 deletions
@@ -56,6 +56,7 @@ namespace OpenNest.IO.Bending
var noteText = StripMTextFormatting(note.Value);
bend.Direction = GetBendDirection(noteText);
bend.NoteText = noteText;
bend.SourceNoteHandle = note.Handle;
ParseBendNote(noteText, bend);
}
@@ -94,6 +95,7 @@ namespace OpenNest.IO.Bending
bend.Angle = other.Angle;
bend.Radius = other.Radius;
bend.NoteText = other.NoteText;
bend.SourceNoteHandle = other.SourceNoteHandle;
break;
}
}