Add missing * layer mask for cli

This commit is contained in:
Marek Roszko 2022-11-07 23:30:30 -05:00
parent d8e9436d92
commit e5d132beec
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ CLI::EXPORT_PCB_BASE_COMMAND::EXPORT_PCB_BASE_COMMAND( std::string aName ) : COM
m_layerMasks[untranslated] = LSET( PCB_LAYER_ID( layer ) );
}
m_layerMasks["*"] = LSET::AllLayersMask();
m_layerMasks["*.Cu"] = LSET::AllCuMask();
m_layerMasks["*In.Cu"] = LSET::InternalCuMask();
m_layerMasks["F&B.Cu"] = LSET( 2, F_Cu, B_Cu );