Browse Source

pcbnew: Worksheet layout texts are propetly rotated in GAL.

pull/1/head
Maciej Suminski 11 years ago
parent
commit
2c1cef339f
  1. 6
      common/worksheet_viewitem.cpp

6
common/worksheet_viewitem.cpp

@ -186,10 +186,14 @@ void WORKSHEET_VIEWITEM::draw( const WS_DRAW_ITEM_TEXT* aItem, GAL* aGal ) const
{
VECTOR2D position( aItem->GetTextPosition().x, aItem->GetTextPosition().y );
aGal->Save();
aGal->Translate( position );
aGal->Rotate( -aItem->GetOrientation() * M_PI / 1800.0 );
aGal->SetStrokeColor( COLOR4D( aItem->GetColor() ) );
aGal->SetLineWidth( aItem->GetThickness() );
aGal->SetTextAttributes( aItem );
aGal->StrokeText( aItem->GetText(), position, 0.0 );
aGal->StrokeText( aItem->GetText(), VECTOR2D( 0, 0 ), 0.0 );
aGal->Restore();
}

Loading…
Cancel
Save