From fec7e2d2d14d11803f16505fa7b4344b3ff1a875 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 13 Apr 2021 19:23:45 -0400 Subject: [PATCH] Do not display no-decode lines in MAP65 main window. --- map65/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map65/mainwindow.cpp b/map65/mainwindow.cpp index 94984e601..d580e0e6c 100644 --- a/map65/mainwindow.cpp +++ b/map65/mainwindow.cpp @@ -1386,7 +1386,7 @@ void MainWindow::readFromStdout() //readFromStdout if(t.indexOf("!") >= 0) { int n=t.length(); if(n>=30) ui->decodedTextBrowser->append(t.mid(1,n-3)); - if(n<30) ui->decodedTextBrowser->append(t.mid(1,n-3)); +// if(n<30) ui->decodedTextBrowser->append(t.mid(1,n-3)); //Write a no-decode JT65 line n=ui->decodedTextBrowser->verticalScrollBar()->maximum(); ui->decodedTextBrowser->verticalScrollBar()->setValue(n); m_messagesText="";