mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-25 05:29:16 -04:00
Ignore stations calling in the wrong time slot when in Hound mode.
This commit is contained in:
parent
885691e170
commit
2ab36d0a13
@ -5822,6 +5822,7 @@ void MainWindow::doubleClickOnCall(Qt::KeyboardModifiers modifiers)
|
||||
cursor=ui->decodedTextBrowser2->textCursor();
|
||||
}
|
||||
DecodedText message {cursor.block().text().trimmed().left(61).remove("TU; ")};
|
||||
if(SpecOp::HOUND==m_specOp && (message.string().mid(4,2).contains("15") or message.string().mid(4,2).contains("45"))) return; // ignore stations calling in the wrong time slot
|
||||
if(message.string().contains(";") && message.string().contains("<")) {
|
||||
QVector<qint32> Freq = {1840000,3573000,7074000,10136000,14074000,18100000,21074000,24915000,28074000,50313000,70154000,3575000,7047500,10140000,14080000,18104000,21140000,24919000,28180000,50318000};
|
||||
for(int i=0; i<Freq.length()-1; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user