Remove padstack offset value
We encode the pad locations for the package in the pin, so we don't need an additional offset from the pin location Fixes https://gitlab.com/kicad/code/kicad/-/issues/16767
This commit is contained in:
parent
3fde08f711
commit
96297b50a1
|
@ -1648,7 +1648,6 @@ void PCB_IO_IPC2581::addPadStack( wxXmlNode* aPadNode, const PAD* aPad )
|
|||
addAttribute( padStackHoleNode, "platingStatus", aPad->GetAttribute() == PAD_ATTRIB::PTH ? "PLATED" : "NONPLATED" );
|
||||
addAttribute( padStackHoleNode, "plusTol", "0.0" );
|
||||
addAttribute( padStackHoleNode, "minusTol", "0.0" );
|
||||
addXY( padStackHoleNode, aPad->GetOffset() );
|
||||
}
|
||||
|
||||
LSEQ layer_seq = aPad->GetLayerSet().Seq();
|
||||
|
|
Loading…
Reference in New Issue