Display the last q65 message character in *nix.

This commit is contained in:
Joe Taylor 2021-04-24 11:28:51 -04:00
parent 44ee835c64
commit 842d46cd6a
1 changed files with 5 additions and 1 deletions

View File

@ -1388,7 +1388,11 @@ void MainWindow::readFromStdout() //readFromStdout
if(t.indexOf("!") >= 0) {
int n=t.length();
if(n>=30) ui->decodedTextBrowser->append(t.mid(1,n-3));
int m=2;
#ifdef WIN32
m=3;
#endif
if(n>=30) ui->decodedTextBrowser->append(t.mid(1,n-m));
// 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);