mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Pcbnew, zones filler: fix a bug I introduced in my commit b1803bc.
This commit is contained in:
parent
b1803bcf02
commit
c8c318510e
@ -234,7 +234,7 @@ bool ZONE_FILLER::Fill( const std::vector<ZONE_CONTAINER*>& aZones, bool aCheck
|
||||
// A filled area outside the board cutouts has all points outside cutouts,
|
||||
// so we only need to check one point for each filled polygon.
|
||||
// Note also non copper zones are already clipped
|
||||
else if( m_brdOutlinesValid && !zone.m_zone->IsOnCopperLayer() )
|
||||
else if( m_brdOutlinesValid && zone.m_zone->IsOnCopperLayer() )
|
||||
{
|
||||
for( int idx = 0; idx < poly.OutlineCount(); )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user