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 )
|
#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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue