mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Enforce board-level hole to hole on diff pairs
Makes the router behave like the DRC Fixes https://gitlab.com/kicad/code/kicad/-/issues/21240
This commit is contained in:
parent
8acdcafe90
commit
cac334bb45
@ -861,7 +861,7 @@ bool PNS_KICAD_IFACE_BASE::ImportSizes( PNS::SIZES_SETTINGS& aSizes, PNS::ITEM*
|
|||||||
holeToHoleMin = constraint.m_Value.Min();
|
holeToHoleMin = constraint.m_Value.Min();
|
||||||
}
|
}
|
||||||
|
|
||||||
aSizes.SetDiffPairHoleToHole( holeToHoleMin );
|
aSizes.SetDiffPairHoleToHole( std::max( holeToHoleMin, aSizes.GetHoleToHole() ) );
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user