7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

Pcbnew, plot F&B Fab: ensure the DNP mark is plotted only on the right layer.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/20458
This commit is contained in:
jean-pierre charras 2025-03-26 16:26:20 +01:00
parent 01c1ff47ad
commit 99e65afa1f

View File

@ -633,7 +633,8 @@ void PlotStandardLayer( BOARD* aBoard, PLOTTER* aPlotter, const LSET& aLayerMask
if( footprint->IsDNP()
&& !itemplotter.GetHideDNPFPsOnFabLayers()
&& itemplotter.GetCrossoutDNPFPsOnFabLayers()
&& ( onFrontFab || onBackFab ) )
&& ( ( onFrontFab && footprint->GetLayer() == F_Cu ) ||
( onBackFab && footprint->GetLayer() == B_Cu ) ) )
{
BOX2I rect = footprint->GetBoundingHull().BBox();
int width = aBoard->GetDesignSettings().m_LineThickness[ LAYER_CLASS_FAB ];