Remove layer nag dialogs and just ignore non-shapes on Edge_Cuts.

Fixes https://gitlab.com/kicad/code/kicad/issues/5812
This commit is contained in:
Jeff Young
2020-10-13 20:22:31 +01:00
parent 6a93b523cf
commit ef3b7052e0
11 changed files with 62 additions and 120 deletions
+1 -8
View File
@@ -879,14 +879,7 @@ LSET LSET::BackMask()
LSET LSET::ForbiddenFootprintLayers()
{
static const LSET saved = InternalCuMask().set( Margin );
return saved;
}
LSET LSET::ForbiddenTextLayers()
{
static const LSET saved( 1, Edge_Cuts );
static const LSET saved = InternalCuMask();
return saved;
}