From 5c54b9c46f1c874300427a9825745bd35e4b914a Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Wed, 5 Dec 2018 10:14:46 +0100 Subject: [PATCH] Fix a compil issue due to a mistake in commit b8309e2 --- pcbnew/pcb_painter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/pcb_painter.cpp b/pcbnew/pcb_painter.cpp index d2cbec28f0..ecea299ad2 100644 --- a/pcbnew/pcb_painter.cpp +++ b/pcbnew/pcb_painter.cpp @@ -996,7 +996,7 @@ void PCB_PAINTER::draw( const DRAWSEGMENT* aSegment, int aLayer ) m_gal->SetLineWidth( thickness ); - m_gal->SetIsFill( aSegment->IsPolygonFilled ); + m_gal->SetIsFill( aSegment->IsPolygonFilled() ); m_gal->SetIsStroke( true ); m_gal->DrawPolygon( shape );