diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-09 21:18:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-09 21:18:35 +0300 |
commit | b24d92e3052e0b4a43b0bfe209ef910ddc41878e (patch) | |
tree | 479d0865a2323e2532e7cbbce24b80ad408e2ea5 /src/gui/windows | |
parent | 2856985d7441cbd8edd0b83b308f65ad9c72ad02 (diff) | |
download | plus-b24d92e3052e0b4a43b0bfe209ef910ddc41878e.tar.gz plus-b24d92e3052e0b4a43b0bfe209ef910ddc41878e.tar.bz2 plus-b24d92e3052e0b4a43b0bfe209ef910ddc41878e.tar.xz plus-b24d92e3052e0b4a43b0bfe209ef910ddc41878e.zip |
add color for away chat messages.
New theme color: AWAYCHAT, AWAYCHAT_OUTLINE.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 576ff9fd4..64eeb7669 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -1714,7 +1714,7 @@ void ChatWindow::addToAwayLog(const std::string &line) mAwayLog.pop_front(); if (findI(line, mHighlights) != std::string::npos) - mAwayLog.push_back("##9away:" + line); + mAwayLog.push_back("##aaway:" + line); } void ChatWindow::displayAwayLog() const |