Fix a missing parameter initialization (arc angle) in footprint DXF import
This commit is contained in:
parent
abbd47e2f2
commit
502d0a38be
|
@ -644,6 +644,7 @@ int DRAWING_TOOL::PlaceDXF( const TOOL_EVENT& aEvent )
|
|||
modSeg->SetWidth( seg->GetWidth() );
|
||||
modSeg->SetStart( seg->GetStart() );
|
||||
modSeg->SetEnd( seg->GetEnd() );
|
||||
modSeg->SetAngle( seg->GetAngle() );
|
||||
modSeg->SetShape( seg->GetShape() );
|
||||
modSeg->SetType( seg->GetType() );
|
||||
modSeg->SetBezControl1( seg->GetBezControl1() );
|
||||
|
|
Loading…
Reference in New Issue