Remove unused footprint text front & back colours.
This commit is contained in:
parent
5955091eb3
commit
8234e70e77
|
@ -128,8 +128,6 @@ COLOR_SETTINGS::COLOR_SETTINGS( wxString aFilename ) :
|
|||
CLR( "board.drc_error", LAYER_DRC_ERROR, COLOR4D( PURERED ) );
|
||||
CLR( "board.drc_warning", LAYER_DRC_WARNING, COLOR4D( PUREYELLOW ) );
|
||||
CLR( "board.drc_exclusion", LAYER_DRC_EXCLUSION, COLOR4D( WHITE ) );
|
||||
CLR( "board.footprint_text_back", LAYER_MOD_TEXT_BK, COLOR4D( BLUE ) );
|
||||
CLR( "board.footprint_text_front", LAYER_MOD_TEXT_FR, COLOR4D( LIGHTGRAY ) );
|
||||
CLR( "board.footprint_text_invisible", LAYER_MOD_TEXT_INVISIBLE, COLOR4D( LIGHTGRAY ) );
|
||||
CLR( "board.grid", LAYER_GRID, COLOR4D( DARKGRAY ) );
|
||||
CLR( "board.grid_axes", LAYER_GRID_AXES, COLOR4D( LIGHTGRAY ) );
|
||||
|
|
|
@ -362,8 +362,6 @@ bool FOOTPRINT_EDITOR_SETTINGS::MigrateFromLegacy( wxConfigBase* aCfg )
|
|||
migrateLegacyColor( f + "Color4DPCBBackground", LAYER_PCB_BACKGROUND );
|
||||
migrateLegacyColor( f + "Color4DPCBCursor", LAYER_CURSOR );
|
||||
migrateLegacyColor( f + "Color4DRatsEx", LAYER_RATSNEST );
|
||||
migrateLegacyColor( f + "Color4DTxtBackEx", LAYER_MOD_TEXT_BK );
|
||||
migrateLegacyColor( f + "Color4DTxtFrontEx", LAYER_MOD_TEXT_FR );
|
||||
migrateLegacyColor( f + "Color4DTxtInvisEx", LAYER_MOD_TEXT_INVISIBLE );
|
||||
migrateLegacyColor( f + "Color4DViaBBlindEx", LAYER_VIA_BBLIND );
|
||||
migrateLegacyColor( f + "Color4DViaMicroEx", LAYER_VIA_MICROVIA );
|
||||
|
|
|
@ -112,10 +112,6 @@ void PCB_RENDER_SETTINGS::LoadColors( const COLOR_SETTINGS* aSettings )
|
|||
// LAYER_VIA_THROUGH, LAYER_VIA_BBLIND, LAYER_VIA_MICROVIA
|
||||
// are initialized from aSettings
|
||||
|
||||
// These colors are not actually used. Set just in case...
|
||||
m_layerColors[LAYER_MOD_TEXT_FR] = m_layerColors[F_SilkS];
|
||||
m_layerColors[LAYER_MOD_TEXT_BK] = m_layerColors[B_SilkS];
|
||||
|
||||
// Netnames for copper layers
|
||||
for( LSEQ cu = LSET::AllCuMask().CuStack(); cu; ++cu )
|
||||
{
|
||||
|
|
|
@ -708,8 +708,6 @@ bool PCBNEW_SETTINGS::MigrateFromLegacy( wxConfigBase* aCfg )
|
|||
migrateLegacyColor( "Color4DPCBBackground", LAYER_PCB_BACKGROUND );
|
||||
migrateLegacyColor( "Color4DPCBCursor", LAYER_CURSOR );
|
||||
migrateLegacyColor( "Color4DRatsEx", LAYER_RATSNEST );
|
||||
migrateLegacyColor( "Color4DTxtBackEx", LAYER_MOD_TEXT_BK );
|
||||
migrateLegacyColor( "Color4DTxtFrontEx", LAYER_MOD_TEXT_FR );
|
||||
migrateLegacyColor( "Color4DTxtInvisEx", LAYER_MOD_TEXT_INVISIBLE );
|
||||
migrateLegacyColor( "Color4DViaBBlindEx", LAYER_VIA_BBLIND );
|
||||
migrateLegacyColor( "Color4DViaMicroEx", LAYER_VIA_MICROVIA );
|
||||
|
|
Loading…
Reference in New Issue