CADSTAR: fix arcs in symbol libraries.

This commit is contained in:
Alex Shvartzkop 2023-11-08 23:29:27 +03:00
parent 62d735d710
commit 819c0f2082
1 changed files with 1 additions and 1 deletions

View File

@ -612,7 +612,7 @@ SHAPE_LINE_CHAIN CADSTAR_ARCHIVE_PARSER::SHAPE::OutlineAsChain(
outline.SetClosed( true );
// Append after closing, to ensre first and last point remain the same
Vertices.at( 0 ).AppendToChain( &outline, aCadstarToKicadPointCallback, aAccuracy );
outline.Append( outline.CPoint( 0 ), true );
}
return outline;