mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
Display the last q65 message character in *nix.
This commit is contained in:
parent
44ee835c64
commit
842d46cd6a
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user