Add missing * layer mask for cli
This commit is contained in:
parent
d8e9436d92
commit
e5d132beec
|
@ -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[untranslated] = LSET( PCB_LAYER_ID( layer ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_layerMasks["*"] = LSET::AllLayersMask();
|
||||||
m_layerMasks["*.Cu"] = LSET::AllCuMask();
|
m_layerMasks["*.Cu"] = LSET::AllCuMask();
|
||||||
m_layerMasks["*In.Cu"] = LSET::InternalCuMask();
|
m_layerMasks["*In.Cu"] = LSET::InternalCuMask();
|
||||||
m_layerMasks["F&B.Cu"] = LSET( 2, F_Cu, B_Cu );
|
m_layerMasks["F&B.Cu"] = LSET( 2, F_Cu, B_Cu );
|
||||||
|
|
Loading…
Reference in New Issue