From 502d0a38be65ae8a71f03ec92f3bc787414fc864 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 27 Sep 2016 20:54:51 +0200 Subject: [PATCH] Fix a missing parameter initialization (arc angle) in footprint DXF import --- pcbnew/tools/drawing_tool.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcbnew/tools/drawing_tool.cpp b/pcbnew/tools/drawing_tool.cpp index 7ab44a95ee..b9a9fdac4f 100644 --- a/pcbnew/tools/drawing_tool.cpp +++ b/pcbnew/tools/drawing_tool.cpp @@ -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() );