From dd9a00107795648b539d09845a595d047d66b54b Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 8 Dec 2018 17:08:01 +0000 Subject: [PATCH] Turn off bugfix for lp:1797787 for 5.1. This allows people to continue to use the edge-width as a proxy for board edge clearance until we implement board edge clearance as a real feature. Fixes: lp:1797787 * https://bugs.launchpad.net/kicad/+bug/1797787 --- pcbnew/zone_filler.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcbnew/zone_filler.cpp b/pcbnew/zone_filler.cpp index 0f498cb189..304dcb89f6 100644 --- a/pcbnew/zone_filler.cpp +++ b/pcbnew/zone_filler.cpp @@ -529,8 +529,12 @@ void ZONE_FILLER::buildZoneFeatureHoleList( const ZONE_CONTAINER* aZone, // the netclass value, because we do not have a copper item zclearance = zone_to_edgecut_clearance; +#if 0 +// 6.0 TODO: we're leaving this off for 5.1 so that people can continue to use the board +// edge width as a hack for edge clearance. // edge cuts by definition don't have a width ignoreLineWidth = true; +#endif } switch( aItem->Type() )