From e2085b0dd5b8edb2651f78ebe0f9258d7278f214 Mon Sep 17 00:00:00 2001 From: Brian Moran Date: Wed, 3 May 2023 19:31:35 -0700 Subject: [PATCH] add tooltip to rate. remove underscore in the labels --- models/FoxLog.cpp | 2 +- widgets/FoxLogWindow.ui | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/models/FoxLog.cpp b/models/FoxLog.cpp index dd7b18129..960288ca7 100644 --- a/models/FoxLog.cpp +++ b/models/FoxLog.cpp @@ -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())); } diff --git a/widgets/FoxLogWindow.ui b/widgets/FoxLogWindow.ui index cd224ed33..220c5eca5 100644 --- a/widgets/FoxLogWindow.ui +++ b/widgets/FoxLogWindow.ui @@ -95,6 +95,9 @@ + + <html><head/><body><p><span style=" font-family:'Arial','Helvetica','sans-serif'; font-size:small; color:#222222; background-color:#ffffff;">Last 10: Average rate (QSOs/hour) for the last 10 QSOs.<br/>Last 100: Average rate (QSOs/hour) for the last 100 QSOs. <br/>Last 60m: Average rate (QSOs/hour) for the last 60 minutes.</span></p></body></html> + N