Commit bcd66579 authored by Simon Schubert's avatar Simon Schubert Committed by jean-pierre charras

Pcbnew: fix bad arcs in plot postscript (from Simon Schubert)

parent 23aea616
......@@ -153,6 +153,9 @@ void PS_PLOTTER::arc( wxPoint centre, int StAngle, int EndAngle, int radius,
if( radius <= 0 )
return;
if( StAngle > EndAngle )
EXCHG( StAngle, EndAngle );
set_current_line_width( width );
// Calculate start point.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment