From 8226e5f0e2eb3c511acffaecbf476bcb0ae25ee8 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 26 May 2020 19:57:22 +0200 Subject: [PATCH] Minor fix: add Fab layers to the assembly layers list. --- common/lset.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/lset.cpp b/common/lset.cpp index d3ec2daa93..f46faf74f4 100644 --- a/common/lset.cpp +++ b/common/lset.cpp @@ -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 ) );