From 7e0168a99d7305cdb05c0633dfeb511e98f91974 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Fri, 26 Feb 2021 17:06:01 -0800 Subject: [PATCH] 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 --- pcbnew/plugins/fabmaster/import_fabmaster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/plugins/fabmaster/import_fabmaster.cpp b/pcbnew/plugins/fabmaster/import_fabmaster.cpp index 19baca4360..ab2b2f172b 100644 --- a/pcbnew/plugins/fabmaster/import_fabmaster.cpp +++ b/pcbnew/plugins/fabmaster/import_fabmaster.cpp @@ -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 ); }