summaryrefslogtreecommitdiff
path: root/src/gui/chat.cpp
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2009-01-28 11:47:05 +0000
committerDavid Athay <ko2fan@gmail.com>2009-01-28 11:47:05 +0000
commit1a769276ce68285040bffd63bd1c01495ce411a7 (patch)
treeb0b7007ead5276801df1f95455abb31f1c130617 /src/gui/chat.cpp
parent3ca85b152531b9dd9cffa18d9b64d7c7ae615adf (diff)
downloadmana-client-1a769276ce68285040bffd63bd1c01495ce411a7.tar.gz
mana-client-1a769276ce68285040bffd63bd1c01495ce411a7.tar.bz2
mana-client-1a769276ce68285040bffd63bd1c01495ce411a7.tar.xz
mana-client-1a769276ce68285040bffd63bd1c01495ce411a7.zip
Added channel highlighting upon activity. Added /kick command to get rid of users from a channel
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r--src/gui/chat.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp
index 1cf64c74..3d1b5643 100644
--- a/src/gui/chat.cpp
+++ b/src/gui/chat.cpp
@@ -411,6 +411,7 @@ void ChatWindow::sendToChannel(short channelId,
{
std::string channelName = channel->getName();
chatLog(user + ": " + msg, user == player_node->getName() ? BY_PLAYER : BY_OTHER, channelName);
+ mChatTabs->getTab(channelName)->setHighlighted(true);
}
}