Added missing outline for polygon segments.
This commit is contained in:
parent
0f841f194f
commit
69f994e1b2
|
@ -652,6 +652,9 @@ void PCB_PAINTER::draw( const DRAWSEGMENT* aSegment )
|
|||
|
||||
std::copy( aSegment->GetPolyPoints().begin(), aSegment->GetPolyPoints().end(),
|
||||
std::back_inserter( pointsList ) );
|
||||
|
||||
m_gal->SetLineWidth( aSegment->GetWidth() );
|
||||
m_gal->DrawPolyline( pointsList );
|
||||
m_gal->DrawPolygon( pointsList );
|
||||
|
||||
m_gal->Restore();
|
||||
|
|
Loading…
Reference in New Issue