Fix drawing circles in GAL

Fixes: lp:1672039
* https://bugs.launchpad.net/kicad/+bug/1672039
This commit is contained in:
Maciej Suminski 2017-03-11 20:30:13 +01:00
parent 2c56085f41
commit 3fafd48764
1 changed files with 1 additions and 0 deletions

View File

@ -828,6 +828,7 @@ void PCB_PAINTER::draw( const DRAWSEGMENT* aSegment, int aLayer )
{
m_gal->SetLineWidth( thickness );
m_gal->SetIsFill( false );
m_gal->SetIsStroke( true );
m_gal->DrawCircle( start, aSegment->GetRadius() );
}
break;