mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-29 04:42:28 -04:00
Minor code correction.
This commit is contained in:
parent
ffe6ed7a1c
commit
c6d13a7984
@ -3895,12 +3895,11 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
bool bProcessMsgNormally=ui->respondComboBox->currentText()=="CQ: First" or
|
bool bProcessMsgNormally=ui->respondComboBox->currentText()=="CQ: First" or
|
||||||
(ui->respondComboBox->currentText()=="CQ: Max Dist" and m_ActiveStationsWidget==NULL) or
|
(ui->respondComboBox->currentText()=="CQ: Max Dist" and m_ActiveStationsWidget==NULL) or
|
||||||
(m_ActiveStationsWidget!=NULL and !m_ActiveStationsWidget->isVisible());
|
(m_ActiveStationsWidget!=NULL and !m_ActiveStationsWidget->isVisible());
|
||||||
if (decodedtext.messageWords().length() >= 2) {
|
if (decodedtext.messageWords().length() >= 3) {
|
||||||
QString t=decodedtext.messageWords()[2];
|
QString t=decodedtext.messageWords()[2];
|
||||||
if(t.contains("R+") or t.contains("R-") or t=="R" or t=="RRR" or t=="RR73") bProcessMsgNormally=true;
|
if(t.contains("R+") or t.contains("R-") or t=="R" or t=="RRR" or t=="RR73") bProcessMsgNormally=true;
|
||||||
}
|
} else {
|
||||||
else {
|
bProcessMsgNormally=true;
|
||||||
bProcessMsgNormally=true;
|
|
||||||
}
|
}
|
||||||
if(bProcessMsgNormally) {
|
if(bProcessMsgNormally) {
|
||||||
m_bDoubleClicked=true;
|
m_bDoubleClicked=true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user