From 8f4d2cf33b49625f4f4a2fca2053fea3eb8febf4 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 2 Feb 2021 00:07:04 +0000 Subject: [PATCH] Fix typo in footprint flip code. Fixes https://gitlab.com/kicad/code/kicad/issues/7224 --- pcbnew/footprint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/footprint.cpp b/pcbnew/footprint.cpp index d76e344884..22e8fd0123 100644 --- a/pcbnew/footprint.cpp +++ b/pcbnew/footprint.cpp @@ -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 );