Fix rotation of multiple global labels with intersheet references.

This commit is contained in:
Jeff Young 2020-11-21 23:44:26 +00:00
parent a9271e43cc
commit 1f5831185e
2 changed files with 14 additions and 0 deletions

View File

@ -975,6 +975,19 @@ void SCH_GLOBALLABEL::SetLabelSpinStyle( LABEL_SPIN_STYLE aSpinStyle )
}
void SCH_GLOBALLABEL::Rotate( wxPoint aPosition )
{
wxPoint pt = GetTextPos();
RotatePoint( &pt, aPosition, 900 );
wxPoint offset = pt - GetTextPos();
Rotate90( false );
SetTextPos( GetTextPos() + offset );
m_intersheetRefsField.SetTextPos( m_intersheetRefsField.GetTextPos() + offset );
}
void SCH_GLOBALLABEL::Rotate90( bool aClockwise )
{
SCH_TEXT::Rotate90( aClockwise );

View File

@ -402,6 +402,7 @@ public:
void RunOnChildren( const std::function<void( SCH_ITEM* )>& aFunction ) override;
void Rotate( wxPoint aPosition ) override;
void Rotate90( bool aClockwise ) override;
void MirrorSpinStyle( bool aLeftRight ) override;