From bacb2dd52a0e189a6732a66a833fcf930cb3b235 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Mon, 2 May 2016 16:08:51 +0200 Subject: [PATCH] Adjusted required level of details for track labels to show. --- pcbnew/class_track.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/class_track.cpp b/pcbnew/class_track.cpp index 5bd1316438..b3bf1af4eb 100644 --- a/pcbnew/class_track.cpp +++ b/pcbnew/class_track.cpp @@ -763,7 +763,7 @@ unsigned int TRACK::ViewGetLOD( int aLayer ) const // Netnames will be shown only if zoom is appropriate if( IsNetnameLayer( aLayer ) ) { - return ( 20000000 / ( m_Width + 1 ) ); + return ( 40000000 / ( m_Width + 1 ) ); } // Other layers are shown without any conditions