mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Fabmaster: put DISPLAY_TOP/BOTTOM on silkscreen layers
These layers seem to usually be used for silkscreen elements as well as SILKSCREEN_TOP/BOTTOM
This commit is contained in:
parent
1d0ba992da
commit
3521e78a0e
@ -754,8 +754,10 @@ bool FABMASTER::assignLayers()
|
||||
{
|
||||
layer_order.push_back( &layer );
|
||||
}
|
||||
else if( layer.name.find( "SILK" ) != std::string::npos &&
|
||||
layer.name.find( "AUTOSILK" ) == std::string::npos ) // Skip the autosilk layer
|
||||
else if( ( layer.name.find( "SILK" ) != std::string::npos
|
||||
&& layer.name.find( "AUTOSILK" )
|
||||
== std::string::npos ) // Skip the autosilk layer
|
||||
|| layer.name.find( "DISPLAY" ) != std::string::npos )
|
||||
{
|
||||
if( layer.name.find( "B" ) != std::string::npos )
|
||||
layer.layerid = B_SilkS;
|
||||
|
Loading…
x
Reference in New Issue
Block a user