Footprint editor: Graphic polygon don't follow footprint when moving reference anchor
Fixes: lp:1755042 https://bugs.launchpad.net/kicad/+bug/1755042
This commit is contained in:
parent
243ce6979b
commit
d64c89d964
|
@ -1184,9 +1184,22 @@ void MODULE::MoveAnchorPosition( const wxPoint& aMoveVector )
|
|||
case PCB_MODULE_EDGE_T:
|
||||
{
|
||||
EDGE_MODULE* edge = static_cast<EDGE_MODULE*>( item );
|
||||
|
||||
// Polygonal shape coordinates are specific:
|
||||
// m_Start0 and m_End0 have no meaning. So we have to move corner positions
|
||||
if( edge->GetShape() == S_POLYGON )
|
||||
{
|
||||
for( auto iter = edge->GetPolyShape().Iterate(); iter; iter++ )
|
||||
{
|
||||
(*iter) += VECTOR2I( moveVector );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
edge->m_Start0 += moveVector;
|
||||
edge->m_End0 += moveVector;
|
||||
edge->SetDrawCoord();
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue