diff options
-rwxr-xr-x | py/kicad_gerber.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/kicad_gerber.py b/py/kicad_gerber.py index e963be7..f42dc5e 100755 --- a/py/kicad_gerber.py +++ b/py/kicad_gerber.py @@ -85,8 +85,10 @@ class Plan: plot_plan = [Plan.standard(layerNum, description) for (layerNum, description) in [ (F_SilkS, "Silk front"), (F_Mask, "Mask front"), + (F_Paste, "Paste front"), (B_SilkS, "Silk bottom"), (B_Mask, "Mask bottom"), + (B_Paste, "Paste bottom"), (Edge_Cuts, "Edges")]] layers = board.GetEnabledLayers() |