From 73c88bd0fe91e49b2a4749153483ee36fcf1c768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ignacio=20Romero?= Date: Tue, 24 Oct 2017 20:11:08 +0200 Subject: [PATCH] Add more layers in default layers selection plot parameter. --- pcbnew/pcb_plot_params.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pcbnew/pcb_plot_params.cpp b/pcbnew/pcb_plot_params.cpp index 2e153b3308..46b5f1e7b0 100644 --- a/pcbnew/pcb_plot_params.cpp +++ b/pcbnew/pcb_plot_params.cpp @@ -113,8 +113,9 @@ PCB_PLOT_PARAMS::PCB_PLOT_PARAMS() m_outputDirectory.clear(); m_color = BLACK; m_textMode = PLOTTEXTMODE_DEFAULT; - m_layerSelection = LSET( 2, F_SilkS, B_SilkS) | LSET::AllCuMask(); - + m_layerSelection = LSET( 7, F_SilkS, B_SilkS, F_Mask, B_Mask, + F_Paste, B_Paste, Edge_Cuts ) + | LSET::AllCuMask(); // This parameter controls if the NPTH pads will be plotted or not // it is a "local" parameter m_skipNPTH_Pads = false;