FIX: Pcbnew plot BezierCurve: add missing line thickness initialization.
This commit is contained in:
parent
01553a6bd1
commit
5833392689
|
@ -217,6 +217,7 @@ void PLOTTER::BezierCurve( const wxPoint& aStart, const wxPoint& aControl1,
|
|||
std::vector<wxPoint> approxPoints;
|
||||
bezier_converter.GetPoly( approxPoints, minSegLen );
|
||||
|
||||
SetCurrentLineWidth( aLineThickness );
|
||||
MoveTo( aStart );
|
||||
|
||||
for( unsigned ii = 1; ii < approxPoints.size()-1; ii++ )
|
||||
|
|
Loading…
Reference in New Issue