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:
parent
5cec2fac9d
commit
41f5750be7
@ -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 ) )
|
||||
|
Loading…
Reference in New Issue
Block a user