From be0923b68d6f276c717a179eca0fc43598c5f992 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 11 Jul 2024 11:11:12 +0200 Subject: [PATCH] Fix Super Hound label not turning green for 3-digit or compound callsigns. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 93d65747d..de687c9ad 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4173,7 +4173,7 @@ void MainWindow::readFromStdout() //readFromStdout if((m_mode=="FT4" or m_mode=="FT8") and bDisplayPoints and decodedtext1.isStandardMessage()) { ARRL_Digi_Update(decodedtext1); } - if (ui->labDXped->text()=="Super Hound" && decodedtext0.mid(4,12).contains(" verified")) { + if (ui->labDXped->text()=="Super Hound" && decodedtext0.mid(3,18).contains(" verified")) { verified = true; ui->labDXped->setStyleSheet("QLabel {background-color: #00ff00; color: black;}"); } else {