Fix missing board outline in All Copper Layers preset

This commit is contained in:
Jon Evans 2020-08-29 12:13:35 -04:00
parent fa8655511e
commit 37b2ba1363
1 changed files with 2 additions and 1 deletions

View File

@ -312,7 +312,8 @@ LAYER_PRESET APPEARANCE_CONTROLS::presetNoLayers( _( "No Layers" ), LSET() );
LAYER_PRESET APPEARANCE_CONTROLS::presetAllLayers( _( "All Layers" ), LSET::AllLayersMask() );
LAYER_PRESET APPEARANCE_CONTROLS::presetAllCopper( _( "All Copper Layers" ), LSET::AllCuMask() );
LAYER_PRESET APPEARANCE_CONTROLS::presetAllCopper( _( "All Copper Layers" ),
LSET::AllCuMask().set( Edge_Cuts ) );
LAYER_PRESET APPEARANCE_CONTROLS::presetInnerCopper( _( "Inner Copper Layers" ),
LSET::InternalCuMask().set( Edge_Cuts ) );