mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-03 13:47:51 -04:00
Fix a bug that caused wrong frequencies to be written to ALL.TXT for Tx.
This commit is contained in:
parent
6f36f7eea2
commit
f91e8e3cf1
@ -9763,7 +9763,11 @@ void MainWindow::write_all(QString txRx, QString message)
|
||||
auto time = QDateTime::currentDateTimeUtc ();
|
||||
if( txRx=="Rx" && !m_bFastMode ) time=m_dateTimeSeqStart;
|
||||
|
||||
t = t.asprintf("%10.3f ",m_freqNominalPeriod/1.e6); // prevent writing of wrong frequencies
|
||||
if (txRx=="Rx") {
|
||||
t = t.asprintf("%10.3f ",m_freqNominalPeriod/1.e6); // prevent writing of wrong frequencies
|
||||
} else {
|
||||
t = t.asprintf("%10.3f ",m_freqNominal/1.e6);
|
||||
}
|
||||
if (m_diskData) {
|
||||
if (m_fileDateTime.size()==11) {
|
||||
line=m_fileDateTime + " " + t + txRx + " " + mode_string + msg;
|
||||
|
Loading…
x
Reference in New Issue
Block a user