From aee8de2b6455dbdb465f4f42679d01cf1c76ae49 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Fri, 4 Oct 2019 15:29:26 -0400 Subject: [PATCH] Fixed heard through tooltip text --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index c54255b..86fac0b 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -11768,7 +11768,7 @@ void MainWindow::displayCallActivity() { auto iconItem = new QTableWidgetItem(hasMessage ? "\u2691" : hasACK ? "\u2605" : hasCQ ? "\u260E" : hasThrough ? "\u269F" : ""); iconItem->setData(Qt::UserRole, QVariant(d.call)); - iconItem->setToolTip(hasMessage ? "Message Available" : hasACK ? "Hearing Your Station" : hasCQ ? "Calling CQ" : hasThrough ? QString("Heard through %1").arg(d.through) : ""); + iconItem->setToolTip(hasMessage ? "Message Available" : hasACK ? "Hearing Your Station" : hasCQ ? "Calling CQ" : hasThrough ? QString("Heard Through %1 Relay)").arg(d.through) : ""); iconItem->setTextAlignment(Qt::AlignHCenter | Qt::AlignVCenter); ui->tableWidgetCalls->setItem(row, col++, iconItem); if(hasMessage || hasACK || hasCQ || hasThrough){