Bump up precisions for mm and mils to 2 and 4 respectively
This commit is contained in:
parent
16374e9ae1
commit
7e17b39755
|
@ -165,7 +165,7 @@ wxString MessageTextFromValue( EDA_UNITS aUnits, double aValue, bool aAddUnitLab
|
|||
#if defined( EESCHEMA )
|
||||
format = wxT( "%.2f" );
|
||||
#else
|
||||
format = wxT( "%.3f" );
|
||||
format = wxT( "%.4f" );
|
||||
#endif
|
||||
break;
|
||||
|
||||
|
@ -173,7 +173,7 @@ wxString MessageTextFromValue( EDA_UNITS aUnits, double aValue, bool aAddUnitLab
|
|||
#if defined( EESCHEMA )
|
||||
format = wxT( "%.0f" );
|
||||
#else
|
||||
format = wxT( "%.1f" );
|
||||
format = wxT( "%.2f" );
|
||||
#endif
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue