diff --git a/pcbnew/class_module.cpp b/pcbnew/class_module.cpp index f3c0eeaf24..9f658e60e9 100644 --- a/pcbnew/class_module.cpp +++ b/pcbnew/class_module.cpp @@ -1008,7 +1008,7 @@ unsigned int MODULE::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const // Currently it is only for anchor layer if( aView->IsLayerVisible( layer ) ) - return 30; + return 3; return std::numeric_limits::max(); } diff --git a/pcbnew/class_pad.cpp b/pcbnew/class_pad.cpp index 755cb6df45..5b3f407ff0 100644 --- a/pcbnew/class_pad.cpp +++ b/pcbnew/class_pad.cpp @@ -1342,7 +1342,7 @@ unsigned int D_PAD::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const if( divisor == 0 ) return HIDE; - return ( Millimeter2iu( 100 ) / divisor ); + return ( Millimeter2iu( 20 ) / divisor ); } // Other layers are shown without any conditions diff --git a/pcbnew/class_track.cpp b/pcbnew/class_track.cpp index a76d47ef01..81fc242672 100644 --- a/pcbnew/class_track.cpp +++ b/pcbnew/class_track.cpp @@ -770,7 +770,7 @@ unsigned int TRACK::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const // Netnames will be shown only if zoom is appropriate if( IsNetnameLayer( aLayer ) ) { - return ( 40000000 / ( m_Width + 1 ) ); + return ( 4000000 / ( m_Width + 1 ) ); } // Other layers are shown without any conditions