Fix typo.

This commit is contained in:
Jeff Young 2024-05-11 13:01:19 +01:00
parent e51316a932
commit 5ba4900170
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ const BOX2I PCB_TEXT::GetBoundingBox() const
rect.Inflate( getKnockoutMargin() );
if( !angle.IsZero() )
rect = rect.GetBoundingBoxRotated( GetTextPos(), GetTextAngle() );
rect = rect.GetBoundingBoxRotated( GetTextPos(), angle );
return rect;
}