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:
Seth Hillbrand 2021-02-26 17:06:01 -08:00
parent c9b39aaaed
commit 7e0168a99d
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}