7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 14:31:42 +00:00

Fix parsing of tenting tag in pads

Fixes https://gitlab.com/kicad/code/kicad/-/issues/19851
This commit is contained in:
Jon Evans 2025-02-05 19:58:30 -05:00
parent 2f1efd151c
commit ea8a6e305d

View File

@ -5400,6 +5400,10 @@ PAD* PCB_IO_KICAD_SEXPR_PARSER::parsePAD( FOOTPRINT* aParent )
break;
}
case T_tenting:
parseTenting( pad->Padstack() );
break;
case T_zone_layer_connections:
{
LSET cuLayers = pad->GetLayerSet() & LSET::AllCuMask();