Revert commit f5291f2 for WSPR mode only.

This commit is contained in:
k9an 2022-09-28 16:44:28 -05:00
parent 31f429724d
commit f98ec44e98

View File

@ -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 ("WSPR" != m_mode) {
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;