From b81622ccde8a85079b1967201e404a4fef11ac6c Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Wed, 9 Jan 2019 11:31:15 -0500 Subject: [PATCH] Fixed #72: added a tooltip of the band activity text --- mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 39863e8..b1f8d6f 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -10265,6 +10265,8 @@ void MainWindow::displayBandActivity() { // align right if eliding... int colWidth = ui->tableWidgetRXAll->columnWidth(3); auto textItem = new QTableWidgetItem(joined); + textItem->setToolTip(joined); + QFontMetrics fm(textItem->font()); auto elidedText = fm.elidedText(joined, Qt::ElideLeft, colWidth); auto flag = Qt::AlignLeft | Qt::AlignVCenter;