gerbview: Fix arc filling
Arcs in gerbview should not be filled. Fixes: lp:1817246 * https://bugs.launchpad.net/kicad/+bug/1817246
This commit is contained in:
parent
2305c5458e
commit
c4fe6785ad
|
@ -322,7 +322,7 @@ void GERBVIEW_PAINTER::draw( /*const*/ GERBER_DRAW_ITEM* aItem, int aLayer )
|
|||
endAngle = 2 * M_PI;
|
||||
}
|
||||
|
||||
m_gal->DrawArc( center, radius, startAngle, endAngle );
|
||||
m_gal->DrawArcSegment( center, radius, startAngle, endAngle, width );
|
||||
|
||||
// Arc Debugging
|
||||
// m_gal->SetLineWidth( 5 );
|
||||
|
|
Loading…
Reference in New Issue