From 29fc0ced19226667fdff4d7782468824dfa58c87 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Fri, 24 Jul 2020 12:46:43 +0100 Subject: [PATCH] Revert "Fix double-clicking on a decode line containing fSpread." Change superseded. This reverts commit d9c2a1182111d20f8084def9816055267d8ccdc0. --- widgets/mainwindow.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 64a80259e..074576648 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4518,9 +4518,7 @@ void MainWindow::doubleClickOnCall(Qt::KeyboardModifiers modifiers) } return; } - QString t{cursor.block().text().trimmed().left(61).remove("TU; ")}; - t=t.left(46)+" "+t.mid(51); - DecodedText message{t.trimmed()}; + DecodedText message {cursor.block().text().trimmed().left(61).remove("TU; ")}; m_bDoubleClicked = true; processMessage (message, modifiers); }