From 8862752523a954b7f688ea1e4fbe8c947268c49a Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 17 Feb 2020 13:00:56 +0100 Subject: [PATCH] Remove a fix committed in 6b78fdf by mistake. --- pcbnew/zone_filler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/zone_filler.cpp b/pcbnew/zone_filler.cpp index 6d1b340ed4..63876219fa 100644 --- a/pcbnew/zone_filler.cpp +++ b/pcbnew/zone_filler.cpp @@ -477,7 +477,7 @@ void ZONE_FILLER::buildZoneFeatureHoleList( const ZONE_CONTAINER* aZone, { int gap = zone_clearance; int thermalGap = aZone->GetThermalReliefGap( pad ); - gap = std::max( gap, thermalGap ) + outline_half_thickness; + gap = std::max( gap, thermalGap ); item_boundingbox = pad->GetBoundingBox(); item_boundingbox.Inflate( gap );