Skip to content

Commit

Permalink
Remove front silkscreen default setting for PTH and NPTH pads.
Browse files Browse the repository at this point in the history
  • Loading branch information
pointhi authored and Wayne Stambaugh committed Aug 3, 2016
1 parent 32f2428 commit bcdcaa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcbnew/class_pad.cpp
Expand Up @@ -89,7 +89,7 @@ D_PAD::D_PAD( MODULE* parent ) :

LSET D_PAD::StandardMask()
{
static LSET saved = LSET::AllCuMask() | LSET( 3, F_SilkS, B_Mask, F_Mask );
static LSET saved = LSET::AllCuMask() | LSET( 2, B_Mask, F_Mask );
return saved;
}

Expand All @@ -112,7 +112,7 @@ LSET D_PAD::UnplatedHoleMask()
{
// was #define PAD_ATTRIB_HOLE_NOT_PLATED_DEFAULT_LAYERS ALL_CU_LAYERS |
// SILKSCREEN_LAYER_FRONT | SOLDERMASK_LAYER_BACK | SOLDERMASK_LAYER_FRONT
static LSET saved = LSET::AllCuMask() | LSET( 3, F_SilkS, B_Mask, F_Mask );
static LSET saved = LSET::AllCuMask() | LSET( 2, B_Mask, F_Mask );
return saved;
}

Expand Down

0 comments on commit bcdcaa7

Please sign in to comment.