From 5482307ac8628cbedc966c1e4dc29b54ee02ea39 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Thu, 27 Feb 2020 17:42:46 +0000 Subject: [PATCH] Allow edge cuts to be drawn in the footprint editor --- common/lset.cpp | 2 +- include/layers_id_colors_and_visibility.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/lset.cpp b/common/lset.cpp index 525b4aaa33..1e00b5f23e 100644 --- a/common/lset.cpp +++ b/common/lset.cpp @@ -879,7 +879,7 @@ LSET LSET::BackMask() LSET LSET::ForbiddenFootprintLayers() { - static const LSET saved = InternalCuMask().set( Edge_Cuts ).set( Margin ); + static const LSET saved = InternalCuMask().set( Margin ); return saved; } diff --git a/include/layers_id_colors_and_visibility.h b/include/layers_id_colors_and_visibility.h index e1d354fab1..e719cc9eb1 100644 --- a/include/layers_id_colors_and_visibility.h +++ b/include/layers_id_colors_and_visibility.h @@ -652,7 +652,7 @@ public: /** * Layers which are not allowed within footprint definitions. Currently internal - * copper layers, Edge.Cuts and Margin. + * copper layers and Margin. */ static LSET ForbiddenFootprintLayers();