Change LOD cutoff for D-Codes

This commit is contained in:
Jon Evans 2017-09-25 17:10:01 -04:00 committed by Maciej Suminski
parent 6e440ffc2d
commit 4341c0eb2b
1 changed files with 1 additions and 1 deletions

View File

@ -785,7 +785,7 @@ unsigned int GERBER_DRAW_ITEM::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) cons
// DCodes will be shown only if zoom is appropriate // DCodes will be shown only if zoom is appropriate
if( IsDCodeLayer( aLayer ) ) if( IsDCodeLayer( aLayer ) )
{ {
return ( 400000 / ( m_Size.x + 1 ) ); return ( 100000000 / ( m_Size.x + 1 ) );
} }
// Other layers are shown without any conditions // Other layers are shown without any conditions