Fix typo in footprint flip code.

Fixes https://gitlab.com/kicad/code/kicad/issues/7224
This commit is contained in:
Jeff Young 2021-02-02 00:07:04 +00:00
parent 8571687f51
commit 8f4d2cf33b
1 changed files with 1 additions and 1 deletions

View File

@ -1326,7 +1326,7 @@ void FOOTPRINT::Flip( const wxPoint& aCentre, bool aFlipLeftRight )
// Mirror zones to other side of board.
for( ZONE* zone : m_fp_zones )
zone->Flip( m_pos, aFlipLeftRight );
zone->Flip( m_pos, false );
// Mirror reference and value.
m_reference->Flip( m_pos, false );