Applied Hauptmech patch, highlight only current layer in high-contrast mode - tracker patch 2807379
This commit is contained in:
parent
7abf06b3e1
commit
eebc4ff21f
|
@ -129,6 +129,7 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
|
||||||
/* Add developers */
|
/* Add developers */
|
||||||
info.AddDeveloper( wxT( "Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>" ) );
|
info.AddDeveloper( wxT( "Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>" ) );
|
||||||
info.AddDeveloper( SetMsg( wxT( "Dick Hollenbeck <dick@softplc.com>" ) ) );
|
info.AddDeveloper( SetMsg( wxT( "Dick Hollenbeck <dick@softplc.com>" ) ) );
|
||||||
|
info.AddDeveloper( SetMsg( wxT( "Hauptmech <hauptmech@gmail.com>") ) );
|
||||||
info.AddDeveloper( SetMsg( wxT( "Jerry Jacobs <jerkejacobs@gmail.com>" ) ) );
|
info.AddDeveloper( SetMsg( wxT( "Jerry Jacobs <jerkejacobs@gmail.com>" ) ) );
|
||||||
info.AddDeveloper( SetMsg( wxT( "Jonas Diemer <diemer@gmx.de>" ) ) );
|
info.AddDeveloper( SetMsg( wxT( "Jonas Diemer <diemer@gmx.de>" ) ) );
|
||||||
info.AddDeveloper( SetMsg( wxT( "KBool Library <http://boolean.klaasholwerda.nl/bool.html>" ) ) );
|
info.AddDeveloper( SetMsg( wxT( "KBool Library <http://boolean.klaasholwerda.nl/bool.html>" ) ) );
|
||||||
|
|
|
@ -481,6 +481,8 @@ void D_PAD::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, const wxPoin
|
||||||
|
|
||||||
if( screen->Scale( tsize ) >= CHAR_SIZE_MIN ) // Not drawable in size too small.
|
if( screen->Scale( tsize ) >= CHAR_SIZE_MIN ) // Not drawable in size too small.
|
||||||
{
|
{
|
||||||
|
if( !(!IsOnLayer( screen->m_Active_Layer )&& DisplayOpt.ContrastModeDisplay)){
|
||||||
|
|
||||||
tpos = tpos0;
|
tpos = tpos0;
|
||||||
if ( display_padnum )
|
if ( display_padnum )
|
||||||
tpos.y += AreaSize.y / 2;
|
tpos.y += AreaSize.y / 2;
|
||||||
|
@ -493,3 +495,4 @@ void D_PAD::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, const wxPoin
|
||||||
false, false );
|
false, false );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -684,6 +684,8 @@ void TRACK::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, const wxPoin
|
||||||
angle = 900; // angle is in 0.1 degree
|
angle = 900; // angle is in 0.1 degree
|
||||||
if( panel->GetScreen()->Scale( tsize ) >= 6 )
|
if( panel->GetScreen()->Scale( tsize ) >= 6 )
|
||||||
{
|
{
|
||||||
|
if( !(!IsOnLayer( curr_layer )&& DisplayOpt.ContrastModeDisplay)){
|
||||||
|
|
||||||
tsize = (tsize * 8) / 10; // small reduction to give a better look
|
tsize = (tsize * 8) / 10; // small reduction to give a better look
|
||||||
DrawGraphicText( panel, DC, tpos,
|
DrawGraphicText( panel, DC, tpos,
|
||||||
WHITE, net->GetShortNetname(), angle, wxSize( tsize, tsize ),
|
WHITE, net->GetShortNetname(), angle, wxSize( tsize, tsize ),
|
||||||
|
@ -692,6 +694,7 @@ void TRACK::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, const wxPoin
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************************/
|
/*******************************************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue