Bump up precisions for mm and mils to 2 and 4 respectively

This commit is contained in:
Ian McInerney 2020-10-07 23:24:27 +01:00
parent 16374e9ae1
commit 7e17b39755
1 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ wxString MessageTextFromValue( EDA_UNITS aUnits, double aValue, bool aAddUnitLab
#if defined( EESCHEMA ) #if defined( EESCHEMA )
format = wxT( "%.2f" ); format = wxT( "%.2f" );
#else #else
format = wxT( "%.3f" ); format = wxT( "%.4f" );
#endif #endif
break; break;
@ -173,7 +173,7 @@ wxString MessageTextFromValue( EDA_UNITS aUnits, double aValue, bool aAddUnitLab
#if defined( EESCHEMA ) #if defined( EESCHEMA )
format = wxT( "%.0f" ); format = wxT( "%.0f" );
#else #else
format = wxT( "%.1f" ); format = wxT( "%.2f" );
#endif #endif
break; break;