Commit c5031d3f authored by jean-pierre charras's avatar jean-pierre charras

specctra_export.cpp: Fix a conversion error from mils to mm I made i n may...

specctra_export.cpp: Fix a conversion error from mils to mm I made i n may last commit, which set min dist to find a segment end for internal outlines holes to 1 mil instead of 10 mils.
parent 0dd18c25
......@@ -1119,7 +1119,7 @@ void SPECCTRA_DB::fillBOUNDARY( BOARD* aBoard, BOUNDARY* boundary ) throw( IO_ER
// Output the interior Edge.Cuts graphics as keepouts, using nearness metric
// for sloppy graphical items.
prox = Millimeter2iu( 0.025 );
prox = Millimeter2iu( 0.25 );
while( items.GetCount() )
{
......
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