Minor fix: add Fab layers to the assembly layers list.

This commit is contained in:
jean-pierre charras 2020-05-26 19:57:22 +02:00
parent f262e08d40
commit 8226e5f0e2
1 changed files with 2 additions and 0 deletions

View File

@ -648,6 +648,7 @@ LSET LSET::FrontAssembly()
static const PCB_LAYER_ID front_assembly[] = {
F_SilkS,
F_Mask,
F_Fab,
};
static const LSET saved( front_assembly, arrayDim( front_assembly ) );
@ -660,6 +661,7 @@ LSET LSET::BackAssembly()
static const PCB_LAYER_ID back_assembly[] = {
B_SilkS,
B_Mask,
B_Fab,
};
static const LSET saved( back_assembly, arrayDim( back_assembly ) );