From 58333926898c42d00f7207f28c70cb1169b418b5 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sat, 9 Nov 2019 14:02:41 +0100 Subject: [PATCH] FIX: Pcbnew plot BezierCurve: add missing line thickness initialization. --- common/plotters/plotter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/plotters/plotter.cpp b/common/plotters/plotter.cpp index ebf34761ad..1f13f33f0c 100644 --- a/common/plotters/plotter.cpp +++ b/common/plotters/plotter.cpp @@ -217,6 +217,7 @@ void PLOTTER::BezierCurve( const wxPoint& aStart, const wxPoint& aControl1, std::vector approxPoints; bezier_converter.GetPoly( approxPoints, minSegLen ); + SetCurrentLineWidth( aLineThickness ); MoveTo( aStart ); for( unsigned ii = 1; ii < approxPoints.size()-1; ii++ )