From c75c7d084ad37437e342ecfae5394f5e07de63d3 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 8 Mar 2022 14:40:39 +0100 Subject: [PATCH] plot_board_layers.cpp: Add missing layers (USer_x) in list Fixes #11072 https://gitlab.com/kicad/code/kicad/issues/11072 --- pcbnew/plot_board_layers.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pcbnew/plot_board_layers.cpp b/pcbnew/plot_board_layers.cpp index fa36757369..533a38ad72 100644 --- a/pcbnew/plot_board_layers.cpp +++ b/pcbnew/plot_board_layers.cpp @@ -643,7 +643,16 @@ void PlotStandardLayer( BOARD* aBoard, PLOTTER* aPlotter, LSET aLayerMask, // Seems like we want to plot from back to front? static const PCB_LAYER_ID plot_seq[] = { - B_Adhes, // 32 + User_9, + User_8, + User_7, + User_6, + User_5, + User_4, + User_3, + User_2, + User_1, + B_Adhes, F_Adhes, B_Paste, F_Paste,