diff options
author | David Athay <ko2fan@gmail.com> | 2009-01-28 11:47:05 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2009-01-28 11:47:05 +0000 |
commit | 1a769276ce68285040bffd63bd1c01495ce411a7 (patch) | |
tree | b0b7007ead5276801df1f95455abb31f1c130617 /src/gui/chat.cpp | |
parent | 3ca85b152531b9dd9cffa18d9b64d7c7ae615adf (diff) | |
download | mana-1a769276ce68285040bffd63bd1c01495ce411a7.tar.gz mana-1a769276ce68285040bffd63bd1c01495ce411a7.tar.bz2 mana-1a769276ce68285040bffd63bd1c01495ce411a7.tar.xz mana-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.cpp | 1 |
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); } } |