From 60f457827f25eb7f4cbb58a1031747d51fb5226e Mon Sep 17 00:00:00 2001 From: poixen Date: Sat, 2 Jul 2016 21:45:38 +0200 Subject: [PATCH] added more in game timestamps --- cockatrice/src/chatview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/chatview.cpp b/cockatrice/src/chatview.cpp index f3d9317f..218bde24 100644 --- a/cockatrice/src/chatview.cpp +++ b/cockatrice/src/chatview.cpp @@ -80,7 +80,7 @@ void ChatView::appendHtmlServerMessage(const QString &html, bool optionalIsBold, { bool atBottom = verticalScrollBar()->value() >= verticalScrollBar()->maximum(); - QString htmlText = "" + html + ""; + QString htmlText = "" + QDateTime::currentDateTime().toString("[hh:mm:ss] ")+ html + ""; if (optionalIsBold) htmlText = "" + htmlText + "";