diff options
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r-- | src/gui/chat.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 7faf9bda..54b388db 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -454,7 +454,7 @@ void ChatWindow::whisper(const std::string &nick, std::string mes, bool own) } } -ChatTab *ChatWindow::addWhisperTab(const std::string &nick) +ChatTab *ChatWindow::addWhisperTab(const std::string &nick, bool switchTo) { std::string playerName = player_node->getName(); std::string tempNick = nick; @@ -465,5 +465,9 @@ ChatTab *ChatWindow::addWhisperTab(const std::string &nick) if (mWhispers[tempNick] || tempNick.compare(playerName) == 0) return NULL; - return mWhispers[tempNick] = new WhisperTab(nick); + ChatTab *ret = mWhispers[tempNick] = new WhisperTab(nick); + + mChatTabs->setSelectedTab(ret); + + return ret; } |