mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-28 23:28:49 -05:00
Prevent using the wrong decode highlighting scheme after a band change.
This commit is contained in:
parent
f5291f280e
commit
a6e6b91cee
@ -3306,7 +3306,7 @@ void::MainWindow::fast_decode_done()
|
|||||||
DecodedText decodedtext {message.replace (QChar::LineFeed, "")};
|
DecodedText decodedtext {message.replace (QChar::LineFeed, "")};
|
||||||
if(!m_bFastDone) {
|
if(!m_bFastDone) {
|
||||||
ui->decodedTextBrowser->displayDecodedText (decodedtext, m_config.my_callsign (), m_mode, m_config.DXCC (),
|
ui->decodedTextBrowser->displayDecodedText (decodedtext, m_config.my_callsign (), m_mode, m_config.DXCC (),
|
||||||
m_logBook, m_currentBand, m_config.ppfx ());
|
m_logBook, m_currentBandPeriod, m_config.ppfx ());
|
||||||
}
|
}
|
||||||
|
|
||||||
t=message.mid(10,5).toFloat();
|
t=message.mid(10,5).toFloat();
|
||||||
@ -3702,7 +3702,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
ARRL_Digi_Update(decodedtext1);
|
ARRL_Digi_Update(decodedtext1);
|
||||||
}
|
}
|
||||||
ui->decodedTextBrowser->displayDecodedText (decodedtext1, m_config.my_callsign (), m_mode, m_config.DXCC (),
|
ui->decodedTextBrowser->displayDecodedText (decodedtext1, m_config.my_callsign (), m_mode, m_config.DXCC (),
|
||||||
m_logBook, m_currentBand, m_config.ppfx (),
|
m_logBook, m_currentBandPeriod, m_config.ppfx (),
|
||||||
ui->cbCQonly->isVisible() && ui->cbCQonly->isChecked(),
|
ui->cbCQonly->isVisible() && ui->cbCQonly->isChecked(),
|
||||||
haveFSpread, fSpread, bDisplayPoints, m_points);
|
haveFSpread, fSpread, bDisplayPoints, m_points);
|
||||||
if((m_mode=="FT4" or m_mode=="FT8") and bDisplayPoints and decodedtext1.isStandardMessage()) {
|
if((m_mode=="FT4" or m_mode=="FT8") and bDisplayPoints and decodedtext1.isStandardMessage()) {
|
||||||
@ -7363,6 +7363,7 @@ void MainWindow::band_changed (Frequency f)
|
|||||||
setXIT (ui->TxFreqSpinBox->value ());
|
setXIT (ui->TxFreqSpinBox->value ());
|
||||||
QTimer::singleShot (4500, [=] { // prevent wrong frequencies for all.txt and PSK Reporter after band changes
|
QTimer::singleShot (4500, [=] { // prevent wrong frequencies for all.txt and PSK Reporter after band changes
|
||||||
m_freqNominalPeriod = m_freqNominal;
|
m_freqNominalPeriod = m_freqNominal;
|
||||||
|
m_currentBandPeriod = m_currentBand;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -643,6 +643,7 @@ private:
|
|||||||
QString m_xSent; //Contest exchange sent
|
QString m_xSent; //Contest exchange sent
|
||||||
QString m_xRcvd; //Contest exchange received
|
QString m_xRcvd; //Contest exchange received
|
||||||
QString m_currentBand;
|
QString m_currentBand;
|
||||||
|
QString m_currentBandPeriod;
|
||||||
QString m_nextCall;
|
QString m_nextCall;
|
||||||
QString m_nextGrid;
|
QString m_nextGrid;
|
||||||
QString m_fileDateTime;
|
QString m_fileDateTime;
|
||||||
|
Loading…
Reference in New Issue
Block a user