mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-21 10:48:34 -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;
|
||||
}
|
||||
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;
|
||||
processMessage (message, modifiers);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user