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

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()));
}

View File

@ -95,6 +95,9 @@
</item>
<item>
<widget class="QLabel" name="rate_label">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-family:'Arial','Helvetica','sans-serif'; font-size:small; color:#222222; background-color:#ffffff;&quot;&gt;Last 10: Average rate (QSOs/hour) for the last 10 QSOs.&lt;br/&gt;Last 100: Average rate (QSOs/hour) for the last 100 QSOs. &lt;br/&gt;Last 60m: Average rate (QSOs/hour) for the last 60 minutes.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>N</string>
</property>