Fix rotation of dimension objects.
Fixes https://gitlab.com/kicad/code/kicad/issues/6424
This commit is contained in:
parent
1f5831185e
commit
2932fe1e64
|
@ -239,6 +239,13 @@ void DIMENSION_BASE::Rotate( const wxPoint& aRotCentre, double aAngle )
|
|||
|
||||
m_text.SetTextAngle( newAngle );
|
||||
|
||||
wxPoint pt = m_text.GetTextPos();
|
||||
RotatePoint( &pt, aRotCentre, aAngle );
|
||||
m_text.SetTextPos( pt );
|
||||
|
||||
RotatePoint( &m_start, aRotCentre, aAngle );
|
||||
RotatePoint( &m_end, aRotCentre, aAngle );
|
||||
|
||||
Update();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue