High-contrast mode: don't render vias that don't cross high-contrast layer.
Fixes https://gitlab.com/kicad/code/kicad/issues/8740
(cherry picked from commit bbfbfc2cd2
)
This commit is contained in:
parent
3585c184cc
commit
d20c2fe5c5
|
@ -605,6 +605,20 @@ double PCB_VIA::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const
|
|||
if( board )
|
||||
visible = board->GetVisibleLayers() & board->GetEnabledLayers();
|
||||
|
||||
// In high contrast mode don't show vias that don't cross the high-contrast layer
|
||||
if( renderSettings->GetHighContrast() )
|
||||
{
|
||||
PCB_LAYER_ID highContrastLayer = renderSettings->GetPrimaryHighContrastLayer();
|
||||
|
||||
if( LSET::FrontTechMask().Contains( highContrastLayer ) )
|
||||
highContrastLayer = F_Cu;
|
||||
else if( LSET::BackTechMask().Contains( highContrastLayer ) )
|
||||
highContrastLayer = B_Cu;
|
||||
|
||||
if( !GetLayerSet().Contains( highContrastLayer ) )
|
||||
return HIDE;
|
||||
}
|
||||
|
||||
if( IsViaPadLayer( aLayer ) )
|
||||
{
|
||||
if( !FlashLayer( visible ) )
|
||||
|
|
Loading…
Reference in New Issue