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

This commit is contained in:
Wayne Stambaugh 2012-12-14 16:37:59 -05:00
parent cd62be66e7
commit 97ea4e83f7
1 changed files with 1 additions and 1 deletions

View File

@ -1852,7 +1852,7 @@ EDGE_MODULE* PCB_PARSER::parseEDGE_MODULE() throw( IO_ERROR, PARSE_ERROR )
if( token != T_angle )
Expecting( T_angle );
segment->SetAngle( parseDouble( "segment angle" ) );
segment->SetAngle( parseDouble( "segment angle" ) * 10.0 );
NeedRIGHT();
break;