diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 9c1825f27..4a7ef6f42 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -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); }