Updated behavior of allcall to not respond automatically if we have a callsign selected
This commit is contained in:
parent
16c665d199
commit
f27d664f61
@ -9461,6 +9461,13 @@ void MainWindow::processCommandActivity() {
|
|||||||
|
|
||||||
// QUERIED SNR
|
// QUERIED SNR
|
||||||
if (d.cmd == "?") {
|
if (d.cmd == "?") {
|
||||||
|
// 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()){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
reply = QString("%1 SNR %2").arg(d.from).arg(Varicode::formatSNR(d.snr));
|
reply = QString("%1 SNR %2").arg(d.from).arg(Varicode::formatSNR(d.snr));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user