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:
Seth Hillbrand 2024-01-26 10:52:36 -08:00
parent 3fde08f711
commit 96297b50a1
1 changed files with 0 additions and 1 deletions

View File

@ -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();