Fixes: lp:1638499 (footprint editor, footprint transform: incorrect mirror for pads (noticeable only for pads with offset)

https://bugs.launchpad.net/kicad/+bug/1638499
This commit is contained in:
jean-pierre charras 2016-11-02 12:55:19 +01:00 committed by Wayne Stambaugh
parent 0fbdec4c08
commit a262445047
1 changed files with 1 additions and 1 deletions

View File

@ -612,7 +612,7 @@ void MirrorMarkedItems( MODULE* module, wxPoint offset, bool force_all )
tmpz.x = -tmpz.x;
pad->SetDelta( tmpz );
pad->SetOrientation( 1800 - pad->GetOrientation() );
pad->SetOrientation( - pad->GetOrientation() );
}
for( EDA_ITEM* item = module->GraphicalItems(); item; item = item->Next() )