Don't use scientific notation when formatting tracetime
This commit is contained in:
@@ -45,7 +45,7 @@ typedef long long traceTime;
|
||||
|
||||
inline QString prettyFormatTime(traceTime time)
|
||||
{
|
||||
return QString::number(time / 1000.0) + QString(" ns");
|
||||
return QString::number(time / 1000.0, 'f') + QString(" ns");
|
||||
}
|
||||
|
||||
inline QString formatInClks(traceTime time, unsigned int clkPeriod)
|
||||
|
||||
Reference in New Issue
Block a user