diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-20 12:19:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-21 21:09:08 +0300 |
commit | c483cf600e74e7d38a7c0cc7d80435e97040c76c (patch) | |
tree | ba33088840361d3393398d6c9d52ebcfc894dd06 /src/game.cpp | |
parent | 11619eed54e7b9df06c01cae46bd22aadc3f8dc7 (diff) | |
download | mv-c483cf600e74e7d38a7c0cc7d80435e97040c76c.tar.gz mv-c483cf600e74e7d38a7c0cc7d80435e97040c76c.tar.bz2 mv-c483cf600e74e7d38a7c0cc7d80435e97040c76c.tar.xz mv-c483cf600e74e7d38a7c0cc7d80435e97040c76c.zip |
Add channel name to chat tabs.
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp index c614a96ac..d2537c091 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -252,12 +252,12 @@ static void createGuiWindows() if (serverVersion >= 6) questsWindow = new QuestsWindow; - localChatTab = new ChatTab(chatWindow, _("General")); + localChatTab = new ChatTab(chatWindow, _("General"), GENERAL_CHANNEL); localChatTab->setAllowHighlight(false); if (config.getBoolValue("showChatHistory")) localChatTab->loadFromLogFile("#General"); - debugChatTab = new ChatTab(chatWindow, _("Debug")); + debugChatTab = new ChatTab(chatWindow, _("Debug"), ""); debugChatTab->setAllowHighlight(false); if (config.getBoolValue("enableTradeTab")) |