pcbnew: Fix Bezier "Add Primitive" in Pad Creation Dialog (From master branch)

This commit is contained in:
jean-pierre charras 2022-03-06 09:02:13 +01:00
parent 0838543745
commit dd154c155f
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ bool DIALOG_PAD_PRIMITIVES_PROPERTIES::TransferDataFromWindow()
m_shape->SetStart( wxPoint( m_startX.GetValue(), m_startY.GetValue() ) );
m_shape->SetEnd( wxPoint( m_endX.GetValue(), m_endY.GetValue() ) );
m_shape->SetBezierC1( wxPoint( m_ctrl1X.GetValue(), m_ctrl1Y.GetValue()));
m_shape->SetBezierC1( wxPoint( m_ctrl2X.GetValue(), m_ctrl2Y.GetValue()));
m_shape->SetBezierC2( wxPoint( m_ctrl2X.GetValue(), m_ctrl2Y.GetValue()));
break;
case SHAPE_T::ARC: