Don't run DRC checks against reference images.
fixes https://gitlab.com/kicad/code/kicad/-/issues/15932
This commit is contained in:
parent
dbd4af16c6
commit
1ef6e69d83
|
@ -948,6 +948,9 @@ void DRC_TEST_PROVIDER_COPPER_CLEARANCE::testGraphicClearances( )
|
||||||
auto testGraphicAgainstZone =
|
auto testGraphicAgainstZone =
|
||||||
[&]( BOARD_ITEM* item )
|
[&]( BOARD_ITEM* item )
|
||||||
{
|
{
|
||||||
|
if( item->Type() == PCB_BITMAP_T )
|
||||||
|
return;
|
||||||
|
|
||||||
if( !IsCopperLayer( item->GetLayer() ) )
|
if( !IsCopperLayer( item->GetLayer() ) )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue