1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-04-16 00:09:12 -04:00

Blank line between minutes for Q65W decodes.

This commit is contained in:
Joe Taylor 2023-01-02 13:48:08 -05:00
parent c0d327b4be
commit 3b0e2edb75
2 changed files with 6 additions and 0 deletions

View File

@ -982,6 +982,11 @@ void MainWindow::guiUpdate()
if(decodes_.ndecodes > m_fetched) {
while(m_fetched<decodes_.ndecodes) {
QString t=QString::fromLatin1(decodes_.result[m_fetched]);
if(m_UTC0!="" and m_UTC0!=t.left(4)) {
QString t1="-";
ui->decodedTextBrowser->append(t1.repeated(46));
}
m_UTC0=t.left(4);
ui->decodedTextBrowser->append(t.trimmed());
m_fetched++;
}

View File

@ -182,6 +182,7 @@ private:
QString m_palette;
QString m_dateTime;
QString m_mode;
QString m_UTC0="";
QHash<QString,bool> m_worked;