From 4df4b90795a8bf1ca9f4ee7a60145500bd88ab3b Mon Sep 17 00:00:00 2001 From: zhupengfei Date: Sun, 16 Dec 2018 23:08:47 +0800 Subject: [PATCH] citra_qt/multiplayer: Change style for pinged messages a bit To allow it to be seen more clearly in dark themes --- src/citra_qt/multiplayer/chat_room.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/citra_qt/multiplayer/chat_room.cpp b/src/citra_qt/multiplayer/chat_room.cpp index 85ac53987..60a41c6b1 100644 --- a/src/citra_qt/multiplayer/chat_room.cpp +++ b/src/citra_qt/multiplayer/chat_room.cpp @@ -70,7 +70,8 @@ public: style = QString("background-color: %1").arg(ping_color); } - return QString("[%1] <%3> %5") + return QString("[%1] <%3> %5") .arg(timestamp, color, name.toHtmlEscaped(), style, message.toHtmlEscaped()); }