mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-14 16:11:50 -05:00
Expand 22-bit messages to 37 bits. This fixes the double-click failure.
This commit is contained in:
parent
b2b56bbd90
commit
e14fbd2fd0
@ -2955,7 +2955,11 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
{
|
{
|
||||||
while(proc_jt9.canReadLine()) {
|
while(proc_jt9.canReadLine()) {
|
||||||
QByteArray t=proc_jt9.readLine();
|
QByteArray t=proc_jt9.readLine();
|
||||||
if(m_mode=="JT65") t=t.left(43) + " " + t.mid(43,-1); //Pad 22-char msg to 37 chars
|
if(m_mode!="FT8") {
|
||||||
|
//Pad 22-char msg to 37 chars
|
||||||
|
t=t.left(43) + " " + t.mid(43,-1);
|
||||||
|
t=t.trimmed();
|
||||||
|
}
|
||||||
// qint64 ms=QDateTime::currentMSecsSinceEpoch() - m_msec0;
|
// qint64 ms=QDateTime::currentMSecsSinceEpoch() - m_msec0;
|
||||||
bool bAvgMsg=false;
|
bool bAvgMsg=false;
|
||||||
int navg=0;
|
int navg=0;
|
||||||
|
Loading…
Reference in New Issue
Block a user