add tooltip to rate. remove underscore in the labels

This commit is contained in:
Brian Moran
2023-05-03 19:31:35 -07:00
parent afd97aeb68
commit e2085b0dd5
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ FoxLog::impl::impl (Configuration const * configuration)
QString FoxLog::rate()
{
return QString("Last_10: %1, Last_100: %2, Last_60m: %3").arg(QString::number(this->rate_last_n(10),'f',0),
return QString("Last 10: %1, Last 100: %2, Last 60m: %3").arg(QString::number(this->rate_last_n(10),'f',0),
QString::number(this->rate_last_n(100),'f',0),
QString::number(this->rate_60m()));
}