Commit 9f85074c authored by Max-Wilhelm Bruker's avatar Max-Wilhelm Bruker
Browse files

colon after sender name in chat view

parent a3b7ed71
......@@ -32,7 +32,7 @@ void ChatView::appendMessage(QString sender, const QString &message)
senderFormat.setForeground(Qt::blue);
cursor.setCharFormat(senderFormat);
if (!sender.isEmpty())
sender.append(" ");
sender.append(": ");
cursor.insertText(sender);
QTextCharFormat messageFormat;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment