Fix bounding box update after rotation.

This commit is contained in:
jean-pierre charras 2020-10-27 14:18:29 +01:00
parent 73c7154891
commit 2cb23277f3
1 changed files with 2 additions and 0 deletions

View File

@ -1250,6 +1250,8 @@ void MODULE::Rotate( const wxPoint& aRotCentre, double aAngle )
if( item->Type() == PCB_FP_TEXT_T )
static_cast<FP_TEXT*>( item )->KeepUpright( orientation, newOrientation );
}
CalculateBoundingBox();
}