Added ACK notifications

This commit is contained in:
Jordan Sherer 2019-10-10 20:50:50 -04:00
parent 8901406755
commit 3e853f4250
2 changed files with 4 additions and 0 deletions

View File

@ -1590,6 +1590,7 @@ void Configuration::impl::initialize_models ()
QList<QPair<QString, QString>> notifyRows = {
{"notify_cq", "CQ Message Received"},
{"notify_hb", "HB Message Received"},
{"notify_ack", "ACK Message Received"},
{"notify_directed", "Directed Message Received"},
{"notify_inbox", "Inbox Message Received"},
{"notify_call_new", "New Callsign Heard"},

View File

@ -10877,6 +10877,9 @@ void MainWindow::processCommandActivity() {
else if (d.cmd == " ACK" && !isAllCall){
qDebug() << "skipping incoming ack" << d.text;
// notification for ack
tryNotify("ack");
// make sure this is explicit
continue;
}