Plot SVG: fix issue with arcs (bug #1328155 ) both in Pcbnew and Eeschema.

This commit is contained in:
jean-pierre charras
2014-06-10 18:21:38 +02:00
parent 8cb3423262
commit 737ef50cc0
2 changed files with 2 additions and 8 deletions
+1 -1
View File
@@ -346,7 +346,7 @@ void SVG_PLOTTER::Arc( const wxPoint& centre, double StAngle, double EndAngle, i
DPOINT centre_dev = userToDeviceCoordinates( centre );
double radius_dev = userToDeviceSize( radius );
if( m_yaxisReversed ) // Should be always the case
if( !m_yaxisReversed ) // Should be never the case
{
double tmp = StAngle;
StAngle = -EndAngle;