Gerber files: fix incorrect FileFunction attribute value for F.Fab and B.Fab layers.

This commit is contained in:
jean-pierre charras 2021-09-01 11:17:05 +02:00
parent 38d463ae49
commit 190223949c
1 changed files with 4 additions and 2 deletions

View File

@ -148,11 +148,13 @@ const wxString GetGerberFileFunctionAttribute( const BOARD *aBoard, LAYER_NUM aL
break;
case B_Fab:
attrib = "Other,Fab,Bot";
// This is actually a assembly layer
attrib = "AssemblyDrawing,Bot";
break;
case F_Fab:
attrib = "Other,Fab,Top";
// This is actually a assembly layer
attrib = "AssemblyDrawing,Top";
break;
case B_Cu: