7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:05:30 +00:00

Fix logic in via high contrast LOD calculation

Fixes https://gitlab.com/kicad/code/kicad/-/issues/20093
This commit is contained in:
Jon Evans 2025-02-25 20:59:26 -05:00
parent 5cec2fac9d
commit 41f5750be7

View File

@ -1502,10 +1502,7 @@ double PCB_VIA::ViewGetLOD( int aLayer, const KIGFX::VIEW* aView ) const
else if( LSET::BackTechMask().Contains( highContrastLayer ) )
highContrastLayer = B_Cu;
if( !IsCopperLayer( highContrastLayer ) )
return LOD_HIDE;
if( GetViaType() != VIATYPE::THROUGH )
if( IsCopperLayer( highContrastLayer ) && GetViaType() != VIATYPE::THROUGH )
{
if( IsCopperLayerLowerThan( Padstack().Drill().start, highContrastLayer )
|| IsCopperLayerLowerThan( highContrastLayer, Padstack().Drill().end ) )