PNS: Fix diff pair handling of microvias as start items
Fixes https://gitlab.com/kicad/code/kicad/-/issues/8514
This commit is contained in:
parent
d856b01d32
commit
0da85ded2f
|
@ -515,7 +515,7 @@ bool DIFF_PAIR_PLACER::FindDpPrimitivePair( NODE* aWorld, const VECTOR2I& aP, IT
|
||||||
|
|
||||||
bool shapeMatches = true;
|
bool shapeMatches = true;
|
||||||
|
|
||||||
if( item->OfKind( ITEM::SOLID_T ) && item->Layers() != aItem->Layers() )
|
if( item->OfKind( ITEM::SOLID_T | ITEM::VIA_T ) && item->Layers() != aItem->Layers() )
|
||||||
{
|
{
|
||||||
shapeMatches = false;
|
shapeMatches = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue