From 2e5ef07a72e7d8f8332b50593f6e481d8bd0b78c Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 21 Sep 2024 10:30:04 -0400 Subject: [PATCH] Correct the logic for nMaxRemainingSlots. --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 3f11b30ff..de2e61ec4 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -10704,6 +10704,7 @@ list1Done: //Compile list2: Up to Nslots Hound calls to be sent a report. // For Superfox, up to 5 RR73, but only 4 callsigns with reports. m_NSlots should be 5 for SF. nMaxRemainingSlots = (m_config.superFox()) ? m_Nslots - 1 : m_Nslots; + if(m_config.superFox() and ui->cbSendMsg->isChecked()) nMaxRemainingSlots=4; for(int i=0; i