pcb_parser: fix incorrect handling of rotation of PCB_TEXTs in footprints.

Fixes #15054
https://gitlab.com/kicad/code/kicad/-/issues/15054
This commit is contained in:
jean-pierre charras 2023-06-26 11:27:06 +02:00
parent c7f6b20405
commit 7e8070b700
1 changed files with 5 additions and 1 deletions

View File

@ -3135,6 +3135,11 @@ void PCB_PARSER::parsePCB_TEXT_effects( PCB_TEXT* aText )
if( parentFP )
{
// make PCB_TEXT rotation relative to the parent footprint.
// It was read as absolute rotation from file
aText->SetTextAngle( aText->GetTextAngle() - parentFP->GetOrientation() );
// Move and rotate the text to its board coordinates
aText->Rotate( { 0, 0 }, parentFP->GetOrientation() );
aText->Move( parentFP->GetPosition() );
}
@ -4022,7 +4027,6 @@ FOOTPRINT* PCB_PARSER::parseFOOTPRINT_unchecked( wxArrayString* aInitialComments
case T_fp_text:
{
PCB_TEXT* text = parsePCB_TEXT( footprint.get() );
text->SetTextAngle( text->GetTextAngle() - footprint->GetOrientation());
if( PCB_FIELD* field = dynamic_cast<PCB_FIELD*>( text ) )
{