From 735acb000e76b285735ec5cf2deecec785abe883 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Thu, 13 Sep 2018 01:10:32 -0400 Subject: [PATCH] Fixed issue with ALLCALL block blocking legit directed query --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 1d46c6d..3db57b0 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -9553,7 +9553,7 @@ void MainWindow::processCommandActivity() { // do not respond to allcall ? if: // 1. we recently responded to one // 2. or, we are in a directed qso...(i.e., we have a callsign selected) - if(!callsignSelected().isEmpty()){ + if(isAllCall && !callsignSelected().isEmpty()){ continue; }