mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:25:30 +00:00
Don't report "shorting nets" when one pad has no net.
(Fall back to clearance violation instead.) Fixes https://gitlab.com/kicad/code/kicad/-/issues/19752
This commit is contained in:
parent
a9500de3f8
commit
e530bab396
@ -874,7 +874,7 @@ void DRC_TEST_PROVIDER_COPPER_CLEARANCE::testPadAgainstItem( PAD* pad, SHAPE* pa
|
||||
// Pads connected to pads of a net-tie footprint are allowed to collide
|
||||
// with the net-tie footprint's graphics.
|
||||
}
|
||||
else if( actual == 0 && otherNet && testShorting )
|
||||
else if( actual == 0 && padNet && otherNet && testShorting )
|
||||
{
|
||||
std::shared_ptr<DRC_ITEM> drce = DRC_ITEM::Create( DRCE_SHORTING_ITEMS );
|
||||
wxString msg;
|
||||
|
Loading…
Reference in New Issue
Block a user