mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Implement "No own decodes" functionality for FST4W mode
This commit is contained in:
parent
d9c992943a
commit
ed92d0811a
@ -3312,6 +3312,12 @@ void MainWindow::readFromStdout() //readFromStdout
|
||||
fSpread = text.toFloat (&haveFSpread);
|
||||
line_read = line_read.left (64);
|
||||
}
|
||||
auto const& cs = m_config.my_callsign ().toLocal8Bit ();
|
||||
if ("FST4W" == m_mode && ui->cbNoOwnCall->isChecked ()
|
||||
&& (line_read.contains (" " + cs + " ")
|
||||
|| line_read.contains ("<" + cs + ">"))) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (m_mode!="FT8" and m_mode!="FT4"
|
||||
&& !m_mode.startsWith ("FST4")) {
|
||||
|
Loading…
Reference in New Issue
Block a user