Write unpacked entries to the ALL.txt file

This commit is contained in:
Jordan Sherer 2018-07-31 22:14:32 -04:00
parent 3a5707992c
commit 7ff43be5f3

View File

@ -3252,8 +3252,9 @@ void MainWindow::readFromStdout() //readFromStdout
m_RxLog=0;
}
int n=t.length();
auto dt = DecodedText(t.mid(0, n-2));
out << dt.message() << endl;
auto logText = t.mid(0, n-2);
auto dt = DecodedText(logText, false, m_config.my_grid());
out << logText << " " << dt.message() << endl;
f.close();
} else {
MessageBox::warning_message (this, tr ("File Open Error")