Use ShowOTP instead of HideOTP, and reverse the logic of this checkbox.

This commit is contained in:
Uwe Risse
2024-09-18 16:52:11 +02:00
parent 8eb0f8a50c
commit 463f655236
4 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -4350,14 +4350,14 @@ void MainWindow::readFromStdout() //readFromStdout
callsign = otp_parts[0];
otp = otp_parts[1];
hz = lineparts[3].toInt();
if (m_config.HideOTP()) filtered = true;
if (!m_config.ShowOTP()) filtered = true;
} else
{
// split $VERIFY$ K8R 920749 into K8R and 920749
callsign = lineparts[6];
otp = lineparts[7];
hz = 750; // SF is 750
if (m_config.HideOTP()) filtered = true;
if (!m_config.ShowOTP()) filtered = true;
}
QDateTime verifyDateTime;
if (m_diskData) {