Fix rotation of dimension objects.

Fixes https://gitlab.com/kicad/code/kicad/issues/6424
This commit is contained in:
Jeff Young 2020-11-21 23:52:36 +00:00
parent 1f5831185e
commit 2932fe1e64
1 changed files with 7 additions and 0 deletions

View File

@ -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();
}