diff --git a/src/chatlog/chatlog.cpp b/src/chatlog/chatlog.cpp index 673f6cb4e..979ba0c38 100644 --- a/src/chatlog/chatlog.cpp +++ b/src/chatlog/chatlog.cpp @@ -468,7 +468,7 @@ QString ChatLog::getSelectedText() const if(lastSender != lines[i]->content[0]->getText() && !lines[i]->content[0]->getText().isEmpty()) { //author changed - out += QString(out.isEmpty() ? "%1:\n" : "\n%1:\n").arg(lines[i]->content[0]->getText()); + out += QString(out.isEmpty() ? "[%2] %1:\n" : "\n[%2] %1:\n").arg(lines[i]->content[0]->getText(), lines[i]->content[2]->getText()); lastSender = lines[i]->content[0]->getText(); }