2 very minor fixes.
This commit is contained in:
parent
19347b1243
commit
79af0c454d
|
@ -608,7 +608,7 @@ void EDA_3D_CANVAS::Redraw()
|
|||
// Calculation time in seconds
|
||||
double calculation_time = (double)( GetRunningMicroSecs() - strtime) / 1e6;
|
||||
|
||||
activityReporter.Report( wxString::Format( _( "Build time %3f s" ),
|
||||
activityReporter.Report( wxString::Format( _( "Build time %.3f s" ),
|
||||
calculation_time ) );
|
||||
}
|
||||
else
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
// std::vector templates
|
||||
|
||||
%template(VIA_DIMENSION_Vector) std::vector<VIA_DIMENSION>;
|
||||
%template (RATSNET_Vector) std::vector<RATSNEST_ITEM>;
|
||||
%template (RATSNEST_Vector) std::vector<RATSNEST_ITEM>;
|
||||
|
||||
%extend BOARD
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue