Commit 97ea4e83 authored by Wayne Stambaugh's avatar Wayne Stambaugh
Browse files

Fix angle scaling error in Pcbnew s-expr file format parser. (fixes the arc bug part of lp:1090524)

parent cd62be66
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1852,7 +1852,7 @@ EDGE_MODULE* PCB_PARSER::parseEDGE_MODULE() throw( IO_ERROR, PARSE_ERROR )
        if( token != T_angle )
        if( token != T_angle )
            Expecting( T_angle );
            Expecting( T_angle );


        segment->SetAngle( parseDouble( "segment angle" ) );
        segment->SetAngle( parseDouble( "segment angle" ) * 10.0 );
        NeedRIGHT();
        NeedRIGHT();
        break;
        break;