Browse Source

Pcbnew: GPcb footprint import: fix incorrect pad size.

pull/1/head
jean-pierre charras 14 years ago
parent
commit
2600bb31c0
  1. 2
      pcbnew/gpcb_exchange.cpp

2
pcbnew/gpcb_exchange.cpp

@ -402,7 +402,7 @@ bool MODULE::Read_GPCB_Descr( const wxString& CmpFullFileName )
Pad->SetOrientation( wxRound( angle ) );
Pad->m_Pos.x = (ibuf[0] + ibuf[2]) / 2;
Pad->m_Pos.y = (ibuf[1] + ibuf[3]) / 2;
Pad->m_Size.x = wxRound( hypot( (double)delta.x, (double)delta.y ) );
Pad->m_Size.x = wxRound( hypot( (double)delta.x, (double)delta.y ) ) + ibuf[4];
Pad->m_Size.y = ibuf[4];
Pad->m_Pos += m_Pos;

Loading…
Cancel
Save