From 46595d45e84459375a442546770bd70c73fd20c7 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Mon, 9 Sep 2024 15:30:36 +0200 Subject: [PATCH] Don't reset bg color of the Hound label to red for every non-verified message. --- widgets/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 7c7ed0b4d..1c53dd5d9 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4374,7 +4374,9 @@ void MainWindow::readFromStdout() //readFromStdout write_all("Vf",decodedtext0.string()); ui->labDXped->setStyleSheet("QLabel {background-color: #00ff00; color: black;}"); } else { +#ifndef FOX_OTP if (m_specOp==SpecOp::HOUND && m_config.superFox() && (decodedtext0.mid(4,2).contains("00") or decodedtext0.mid(4,2).contains("30"))) verified = false; +#endif } if ((!verified && ui->labDXped->isVisible()) or !ui->labDXped->text().contains("Hound")) ui->labDXped->setStyleSheet("QLabel {background-color: red; color: white;}");