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

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

parent cd62be66
......@@ -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;
......
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