Commit 1ab12c2b authored by Marco Mattila's avatar Marco Mattila

Don't subtract soldermask from other than silkscreen layers when plotting gerbers from pcbnew.

parent b6508af0
......@@ -718,7 +718,8 @@ void PCB_BASE_FRAME::Plot_Layer( PLOTTER* plotter, int Layer, GRTraceMode trace_
Plot_Standard_Layer( plotter, layer_mask, false, trace_mode );
break;
default:
case SILKSCREEN_N_FRONT:
case SILKSCREEN_N_BACK:
PlotSilkScreen( plotter, layer_mask, trace_mode );
// Gerber: Subtract soldermask from silkscreen if enabled
......@@ -742,6 +743,10 @@ void PCB_BASE_FRAME::Plot_Layer( PLOTTER* plotter, int Layer, GRTraceMode trace_
}
break;
default:
PlotSilkScreen( plotter, layer_mask, trace_mode );
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment