mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-15 12:12:31 -04:00
Fix double-clicking on a decode line containing fSpread.
This commit is contained in:
parent
9702537614
commit
d9c2a11821
@ -4514,7 +4514,9 @@ void MainWindow::doubleClickOnCall(Qt::KeyboardModifiers modifiers)
|
|||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
DecodedText message {cursor.block().text().trimmed().left(61).remove("TU; ")};
|
QString t{cursor.block().text().trimmed().left(61).remove("TU; ")};
|
||||||
|
t=t.left(46)+" "+t.mid(51);
|
||||||
|
DecodedText message{t.trimmed()};
|
||||||
m_bDoubleClicked = true;
|
m_bDoubleClicked = true;
|
||||||
processMessage (message, modifiers);
|
processMessage (message, modifiers);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user