diff --git a/pcbnew/router/pns_kicad_iface.cpp b/pcbnew/router/pns_kicad_iface.cpp index 5456585e50..67a019767b 100644 --- a/pcbnew/router/pns_kicad_iface.cpp +++ b/pcbnew/router/pns_kicad_iface.cpp @@ -622,7 +622,8 @@ std::unique_ptr PNS_KICAD_IFACE_BASE::syncPad( D_PAD* aPad ) std::unique_ptr< PNS::SOLID > solid( new PNS::SOLID ); - if( aPad->GetAttribute() == PAD_ATTRIB_STANDARD || PAD_ATTRIB_HOLE_NOT_PLATED ) + if( aPad->GetAttribute() == PAD_ATTRIB_STANDARD || + aPad->GetAttribute() == PAD_ATTRIB_HOLE_NOT_PLATED ) solid->SetAlternateShape( aPad->GetEffectiveHoleShape()->Clone() ); if( aPad->GetAttribute() == PAD_ATTRIB_HOLE_NOT_PLATED )