mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-15 12:12:31 -04:00
Blank line between minutes for Q65W decodes.
This commit is contained in:
parent
c0d327b4be
commit
3b0e2edb75
@ -982,6 +982,11 @@ void MainWindow::guiUpdate()
|
|||||||
if(decodes_.ndecodes > m_fetched) {
|
if(decodes_.ndecodes > m_fetched) {
|
||||||
while(m_fetched<decodes_.ndecodes) {
|
while(m_fetched<decodes_.ndecodes) {
|
||||||
QString t=QString::fromLatin1(decodes_.result[m_fetched]);
|
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());
|
ui->decodedTextBrowser->append(t.trimmed());
|
||||||
m_fetched++;
|
m_fetched++;
|
||||||
}
|
}
|
||||||
|
@ -182,6 +182,7 @@ private:
|
|||||||
QString m_palette;
|
QString m_palette;
|
||||||
QString m_dateTime;
|
QString m_dateTime;
|
||||||
QString m_mode;
|
QString m_mode;
|
||||||
|
QString m_UTC0="";
|
||||||
|
|
||||||
QHash<QString,bool> m_worked;
|
QHash<QString,bool> m_worked;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user