Do not display no-decode lines in MAP65 main window.

This commit is contained in:
Joe Taylor 2021-04-13 19:23:45 -04:00
parent 30ecae5193
commit fec7e2d2d1
1 changed files with 1 additions and 1 deletions

View File

@ -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="";