Fix rotation of multiple global labels with intersheet references.
This commit is contained in:
parent
a9271e43cc
commit
1f5831185e
|
@ -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 );
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue