Fix typo.

(cherry picked from commit 5ba4900170)
This commit is contained in:
Jeff Young 2024-05-11 13:01:19 +01:00
parent 79443b7e59
commit c748645334
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,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;
}