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:
parent
01c1ff47ad
commit
99e65afa1f
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user