Browse Source

Fix drawing circles in GAL

Fixes: lp:1672039
* https://bugs.launchpad.net/kicad/+bug/1672039
pull/3/merge
Maciej Suminski 9 years ago
parent
commit
3fafd48764
  1. 1
      pcbnew/pcb_painter.cpp

1
pcbnew/pcb_painter.cpp

@ -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;

Loading…
Cancel
Save