FABMASTER: Process newer outline tag
Allegro uses the subclass "DESIGN_OUTLINE" in newer version for their edge cuts instead of just "OUTLINE". This handles both. Fixes https://gitlab.com/kicad/code/kicad/issues/7735
This commit is contained in:
parent
c9b39aaaed
commit
7e0168a99d
|
@ -1807,7 +1807,7 @@ bool FABMASTER::loadZones( BOARD* aBoard )
|
|||
loadZone( aBoard, zone );
|
||||
else
|
||||
{
|
||||
if( zone->layer == "OUTLINE" )
|
||||
if( zone->layer == "OUTLINE" || zone->layer == "DESIGN_OUTLINE" )
|
||||
{
|
||||
loadOutline( aBoard, zone );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue