mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-01 20:57:53 -04: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) {
|
if(t.indexOf("!") >= 0) {
|
||||||
int n=t.length();
|
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
|
// if(n<30) ui->decodedTextBrowser->append(t.mid(1,n-3)); //Write a no-decode JT65 line
|
||||||
n=ui->decodedTextBrowser->verticalScrollBar()->maximum();
|
n=ui->decodedTextBrowser->verticalScrollBar()->maximum();
|
||||||
ui->decodedTextBrowser->verticalScrollBar()->setValue(n);
|
ui->decodedTextBrowser->verticalScrollBar()->setValue(n);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user