From c5031d3f62e5378a85e140cdb716eda5fd2fd57b Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 23 Dec 2013 09:07:08 +0100 Subject: [PATCH] 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. --- pcbnew/specctra_export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/specctra_export.cpp b/pcbnew/specctra_export.cpp index a2794c1b1f..535d6834fa 100644 --- a/pcbnew/specctra_export.cpp +++ b/pcbnew/specctra_export.cpp @@ -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() ) {